electron-vite-vue/electron/electron-env.d.ts
2022-07-02 22:28:05 +08:00

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
}
}