前端启动成功

This commit is contained in:
2025-10-07 13:31:06 +08:00
parent 8bd1edc75d
commit 741e89bc62
39 changed files with 19370 additions and 1458 deletions

14
schoolNewsWeb/src/env.d.ts vendored Normal file
View File

@@ -0,0 +1,14 @@
/// <reference types="vite/client" />
declare global {
namespace NodeJS {
interface ProcessEnv {
readonly BASE_URL?: string
readonly VITE_API_BASE_URL?: string
readonly VITE_APP_TITLE?: string
readonly VITE_APP_MODE?: string
}
}
}
export {}