feat(frontend): 更新依赖和路由配置

- 更新 npm 依赖 (package.json)
- 更新路由配置 (router/index.js)
- 更新 Vite 构建配置 (vite.config.js)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Developer
2026-03-17 17:30:21 +08:00
parent 47d1da7cea
commit 5f56eec248
4 changed files with 975 additions and 12 deletions

View File

@@ -10,6 +10,7 @@ export default defineConfig({
}
},
server: {
host: '0.0.0.0',
port: 3000,
proxy: {
'/api': {
@@ -17,5 +18,8 @@ export default defineConfig({
changeOrigin: true
}
}
},
build: {
assetsDir: 'assets'
}
})