ad-aures_castoPod/app/Config/Vite.php
Yassine Doghri 0961987276
fix(player): load icons locally instead of relying on vimejs picking them from third party scripts
- use codeigniter-vite to manage static resources
- update dependencies to latest

closes #551
2026-02-18 22:40:18 +01:00

27 lines
606 B
PHP

<?php
declare(strict_types=1);
namespace Config;
use CodeIgniterVite\Config\Vite as CodeIgniterViteConfig;
class Vite extends CodeIgniterViteConfig
{
public string $environment = 'production';
public string $serverOrigin = 'http://localhost:5173';
public string $resourcesDir = 'resources';
public string $assetsDir = 'assets';
public string $manifest = '.vite/manifest.json';
public string $manifestCacheName = 'vite-manifest';
/**
* @var array<array{routes:list<string>,exclude?:list<string>,assets:list<string>}>
*/
public array $routesAssets = [];
}