This commit is contained in:
Zyronon
2025-10-13 23:50:20 +08:00
parent 791cea66fe
commit f19482c942
6 changed files with 73 additions and 243 deletions

View File

@@ -16,9 +16,9 @@ const map = {
}
export const ENV = Object.assign(map['DEV'], common)
// export const IS_OFFICIAL = import.meta.env.DEV
export const IS_OFFICIAL = false
export const IS_LOGIN = true
export const IS_OFFICIAL = import.meta.env.DEV
// export const IS_OFFICIAL = false
export let IS_LOGIN = false
export const CAN_REQUEST = IS_LOGIN && IS_OFFICIAL
export const RESOURCE_PATH = ENV.API + 'static'