登录页面init

This commit is contained in:
2024-08-19 14:01:14 +08:00
parent 74bd16dc51
commit 41babdfa5c
22 changed files with 244 additions and 139 deletions

9
frontend/vite-env.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
interface ImportMetaEnv {
readonly NODE_ENV: string;
readonly VITE_TITLE: string;
// ... 其他环境变量
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}