refactor: inject process.env.NODE_ENV

This commit is contained in:
草鞋没号
2021-07-10 08:51:15 +08:00
parent c94327f87d
commit 66cb0b6abd
2 changed files with 8 additions and 3 deletions

2
typings/global.d.ts vendored
View File

@@ -1,7 +1,7 @@
declare namespace NodeJS {
interface ProcessEnv {
NODE_ENV: 'development' | 'production'
readonly NODE_ENV: 'development' | 'production'
readonly PORT: string
}
}