chore: OXC Formatter

This commit is contained in:
skytek_xinliang
2026-08-13 15:41:12 +08:00
parent 5377b872d8
commit 8f5fa15d3a
40 changed files with 2392 additions and 3009 deletions
+3 -3
View File
@@ -3,11 +3,11 @@
interface ImportMetaEnv {
/** 後端 API 的 base URL,未設定時走 Vite dev server 的 /api */
readonly VITE_API_BASE_URL?: string
readonly VITE_API_BASE_URL?: string;
/** 設為 'false' 才會真正打後端,其餘情況一律使用前端模擬資料 */
readonly VITE_USE_MOCK?: string
readonly VITE_USE_MOCK?: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv
readonly env: ImportMetaEnv;
}