feat: 課程建議

This commit is contained in:
skytek_xinliang
2026-08-05 15:45:45 +08:00
parent c9c7363dc8
commit 889e44f68e
13 changed files with 538 additions and 104 deletions
+11
View File
@@ -1,2 +1,13 @@
/// <reference types="vite/client" />
/// <reference types="vite-plugin-vue-layouts-next/client" />
interface ImportMetaEnv {
/** 後端 API 的 base URL,未設定時走 Vite dev server 的 /api */
readonly VITE_API_BASE_URL?: string
/** 設為 'false' 才會真正打後端,其餘情況一律使用前端模擬資料 */
readonly VITE_USE_MOCK?: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}