mirror of
https://github.com/electron-vite/electron-vite-vue
synced 2025-01-19 03:46:35 +08:00
9 lines
186 B
TypeScript
9 lines
186 B
TypeScript
|
|
declare namespace NodeJS {
|
|
interface ProcessEnv {
|
|
NODE_ENV: 'development' | 'production'
|
|
readonly VITE_DEV_SERVER_HOST: string
|
|
readonly VITE_DEV_SERVER_PORT: string
|
|
}
|
|
}
|