chore: release binary front assets with cdn

This commit is contained in:
duorameng
2026-04-24 09:26:54 +08:00
parent d460266c67
commit 1e37259c98
4 changed files with 42 additions and 3 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ createApp(App)
.use(router)
.use(VueMonacoEditorPlugin, {
paths: {
vs: `${origin}${BASE_URL}/assets/vs`
vs: __MONACO_CDN__ || `${origin}${BASE_URL}/assets/vs`
}
})
.mount('#app')
+1
View File
@@ -4,6 +4,7 @@ declare global {
__BASE_URL__?: string
__API_VERSION__?: string
}
const __MONACO_CDN__: string | null
}
export {}