feat: add url prefix path

This commit is contained in:
engigu
2026-01-13 18:18:50 +08:00
parent b07e742550
commit ff6faa229c
15 changed files with 275 additions and 53 deletions
+9
View File
@@ -0,0 +1,9 @@
// 扩展 Window 接口,添加后端注入的全局变量
declare global {
interface Window {
__BASE_URL__?: string
__API_VERSION__?: string
}
}
export {}