mirror of
https://github.com/sussy-code/smov.git
synced 2025-01-01 16:37:39 +01:00
fix bug I guess
This commit is contained in:
parent
848f2caaae
commit
6a446d5b2f
1 changed files with 5 additions and 1 deletions
|
@ -48,7 +48,11 @@ const env: Record<keyof Config, undefined | string> = {
|
||||||
// loads from different locations, in order: environment (VITE_{KEY}), window (public/config.js)
|
// loads from different locations, in order: environment (VITE_{KEY}), window (public/config.js)
|
||||||
function getKeyValue(key: keyof Config): string | undefined {
|
function getKeyValue(key: keyof Config): string | undefined {
|
||||||
let windowValue = (window as any)?.__CONFIG__?.[`VITE_${key}`];
|
let windowValue = (window as any)?.__CONFIG__?.[`VITE_${key}`];
|
||||||
if (windowValue !== undefined && windowValue.length === 0)
|
if (
|
||||||
|
windowValue !== null &&
|
||||||
|
windowValue !== undefined &&
|
||||||
|
windowValue.length === 0
|
||||||
|
)
|
||||||
windowValue = undefined;
|
windowValue = undefined;
|
||||||
return env[key] ?? windowValue ?? undefined;
|
return env[key] ?? windowValue ?? undefined;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue