Yassine Doghri 61cf8fa3e2 fix(platforms): make platforms' websites and submit urls more prominent
+ show default podcast website (castopod) link first in links page
2023-11-17 17:29:05 +00:00

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';
}