Complete phase two benchmarks, plot previews and static export workflow

This commit is contained in:
2026-09-07 02:54:52 +08:00
parent 95095197df
commit 89df10bc4e
59 changed files with 2535 additions and 83 deletions
+3 -2
View File
@@ -17,6 +17,7 @@ function mathChunk(module: string) {
export default defineConfig({
plugins: [vue()],
resolve: {
dedupe: ['katex'],
alias: {
'@': path.resolve(__dirname, 'src'),
},
@@ -42,8 +43,8 @@ export default defineConfig({
host: '127.0.0.1',
port: 5173,
proxy: {
'/api': 'http://127.0.0.1:8000',
'/health': 'http://127.0.0.1:8000',
'/api': process.env.NOTES_API_TARGET ?? 'http://127.0.0.1:8000',
'/health': process.env.NOTES_API_TARGET ?? 'http://127.0.0.1:8000',
},
},
})