Skip to content

Commit

Permalink
feat: add config settings to support PR nystudio107#72
Browse files Browse the repository at this point in the history
  • Loading branch information
Kashkin committed Sep 6, 2023
1 parent 41af132 commit e2af7d0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@
*/
'manifestPath' => '@webroot/dist/manifest.json',

/**
* @var string File system path to the Vite-built assets
*/
'distPath' => '@webroot/dist/',

/**
* @var string The public URL to the dev server (what appears in `<script src="">` tags
*/
Expand Down
5 changes: 5 additions & 0 deletions src/models/Settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ class Settings extends Model
*/
public $manifestPath;

/**
* @var string File system path to the Vite-built assets
*/
public $distPath;

/**
* @var string The public URL to the dev server (what appears in `<script src="">` tags
*/
Expand Down

0 comments on commit e2af7d0

Please sign in to comment.