feat: 添加生产环境与开发环境配置

This commit is contained in:
2026-03-28 18:01:39 +08:00
parent 369cd6a6e3
commit 6325b84ca0
4 changed files with 12 additions and 1 deletions

9
env.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_BASE_URL: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}