NODE_ENV 去掉 test

This commit is contained in:
wkj 2024-01-05 19:10:42 +08:00
parent 615b2a7bbc
commit 891774cd95
1 changed files with 1 additions and 1 deletions

2
typings/react.d.ts vendored
View File

@ -5,7 +5,7 @@
declare namespace NodeJS {
interface ProcessEnv {
readonly NODE_ENV: 'development' | 'production' | 'test' | 'staging';
readonly NODE_ENV: 'development' | 'production' | 'staging';
readonly PUBLIC_URL: string;
readonly OAK_PLATFORM: 'web' | 'wechatMp' | 'server' | 'native';
}