mirror of
https://github.com/ad-aures/castopod.git
synced 2026-03-13 09:31:04 +08:00
21 lines
390 B
PHP
21 lines
390 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:5173/';
|
|
|
|
public string $assetsRoot = 'assets';
|
|
|
|
public string $manifestFile = '.vite/manifest.json';
|
|
|
|
public string $manifestCSSFile = 'manifest-css.json';
|
|
}
|