12 lines
236 B
TypeScript
12 lines
236 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_JINGROW_SERVER_URL: string
|
|
readonly VITE_BACKEND_SERVER_URL: string
|
|
// 更多环境变量...
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|