mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-13 09:45:47 +00:00
21 lines
384 B
PHP
21 lines
384 B
PHP
![]() |
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Vite\Config;
|
||
|
|
||
|
use CodeIgniter\Config\BaseConfig;
|
||
|
|
||
|
class Vite extends BaseConfig
|
||
|
{
|
||
|
public string $environment = 'production';
|
||
|
|
||
|
public string $baseUrl = 'http://localhost:3000/';
|
||
|
|
||
|
public string $assetsRoot = 'assets';
|
||
|
|
||
|
public string $manifestFile = 'manifest.json';
|
||
|
|
||
|
public string $manifestCSSFile = 'manifest-css.json';
|
||
|
}
|