🆕 项目初始化,页面布局待修改完善

This commit is contained in:
my_ong
2024-12-01 19:02:48 +08:00
commit 6ebf253598
229 changed files with 32894 additions and 0 deletions

9
src/settings/http.ts Normal file
View File

@@ -0,0 +1,9 @@
export interface Http {
prefix: string // 前缀
timeout: number
}
export const http: Http = {
prefix: import.meta.env.VITE_HTTP_PREFIX,
timeout: 10 * 1000,
}