🎨 build framework completed

This commit is contained in:
landaiqing
2024-08-07 22:26:41 +08:00
parent 883afb315a
commit a4b502717c
29 changed files with 2733 additions and 183 deletions

15
src/vite-env.d.ts vendored
View File

@@ -1 +1,16 @@
/// <reference types="vite/client" />
declare interface ImportMetaEnv {
readonly VITE_APP_BASE_API: string;
readonly VITE_APP_TITLE: string;
readonly VITE_API_BASE_URL: string;
readonly VITE_NODE_ENV: string;
readonly VITE_TITLE_NAME: string;
readonly VITE_APP_TOKEN_KEY?: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}