mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 08:23:00 +08:00
12 lines
288 B
TypeScript
12 lines
288 B
TypeScript
|
interface ImportMetaEnv {
|
||
|
readonly NODE_ENV: string
|
||
|
readonly VITE_NODE_ENV: string
|
||
|
readonly VITE_APP_TITLE: string
|
||
|
readonly VITE_BASE_URL: string
|
||
|
readonly VITE_BASE_GRAPHQL_URL: string
|
||
|
readonly VITE_BASE_WS_URL: string
|
||
|
}
|
||
|
|
||
|
interface ImportMeta {
|
||
|
readonly env: ImportMetaEnv
|
||
|
}
|