mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-05 15:56:44 +02:00
20 lines
384 B
PHP
20 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';
|
|
}
|