You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
567 B
TypeScript
23 lines
567 B
TypeScript
export type Recordable<T = any> = Record<string, T>
|
|
|
|
interface ImportMetaEnv extends ViteEnv {
|
|
__: unknown
|
|
}
|
|
|
|
export interface ViteEnv {
|
|
VITE_PORT: number
|
|
VITE_USE_MOCK: boolean
|
|
VITE_USE_PWA: boolean
|
|
VITE_PUBLIC_PATH: string
|
|
VITE_PROXY: [string, string][]
|
|
VITE_GLOB_APP_TITLE: string
|
|
VITE_GLOB_APP_SHORT_NAME: string
|
|
VITE_USE_CDN: boolean
|
|
VITE_DROP_CONSOLE: boolean
|
|
VITE_BUILD_COMPRESS: 'gzip' | 'brotli' | 'none'
|
|
VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE: boolean
|
|
VITE_LEGACY: boolean
|
|
VITE_USE_IMAGEMIN: boolean
|
|
VITE_GENERATE_UI: string
|
|
}
|