From 7aa361467671972d3b2ae491ab3952bbbd67ff58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8D=89=E9=9E=8B=E6=B2=A1=E5=8F=B7?= <308487730@qq.com> Date: Tue, 8 Feb 2022 09:58:29 +0800 Subject: [PATCH] rename --- types.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types.d.ts b/types.d.ts index 8dc2fc6..b435aec 100644 --- a/types.d.ts +++ b/types.d.ts @@ -2,7 +2,7 @@ declare namespace NodeJS { interface ProcessEnv { NODE_ENV: 'development' | 'production' - readonly HOST: string - readonly PORT: number + readonly VITE_DEV_SERVER_HOST: string + readonly VITE_DEV_SERVER_PORT: string } }