mirror of
https://github.com/BillyOutlast/Gazelle-Porn.git
synced 2026-07-01 06:41:50 -04:00
11 lines
270 B
PHP
11 lines
270 B
PHP
<?php
|
|
|
|
function vite($path) {
|
|
if (CONFIG['IS_DEV']) {
|
|
return CONFIG['VITE_SERVER'] . "/$path";
|
|
} else {
|
|
$manifest = json_decode(file_get_contents(__DIR__ . '/../public/manifest.json'), true);
|
|
return "/{$manifest[$path]['file']}";
|
|
}
|
|
}
|