Kaynağa Gözat

fix:build env

dev
powersir 1 yıl önce
ebeveyn
işleme
57e4668641
1 değiştirilmiş dosya ile 4 ekleme ve 1 silme
  1. +4
    -1
      src/utils/env.ts

+ 4
- 1
src/utils/env.ts Dosyayı Görüntüle

@@ -17,10 +17,13 @@ export function getStorageShortName() {
export function getAppEnvConfig() {
const ENV_NAME = getConfigFileName(import.meta.env);
console.log(import.meta.env)
const ENV = (import.meta.env.DEV
var ENV = (import.meta.env.DEV
? // Get the global configuration (the configuration will be extracted independently when packaging)
(import.meta.env as unknown as GlobEnvConfig)
: window[ENV_NAME as any]) as unknown as GlobEnvConfig;
if(!ENV) {
ENV = import.meta.env as unknown as GlobEnvConfig;
}
const {
VITE_GLOB_APP_TITLE,
VITE_GLOB_API_URL,


Yükleniyor…
İptal
Kaydet