主要变更: - 后端代码从根目录迁移到 app/ 目录 - 前端代码从 frontend/ 重命名为 WebUI/ - 更新所有导入路径以适配新结构 - 提取公共 API 响应函数到 app/api/common.py - 精简验证器服务代码 - 更新启动脚本和文档 测试: - 新增完整测试套件 (tests/) - 单元测试: 模型、仓库层 - 集成测试: 覆盖所有 22+ API 端点 - E2E 测试: 4个完整工作流场景 - 添加 pytest 配置和测试运行脚本
35 lines
829 B
JavaScript
35 lines
829 B
JavaScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
server: {
|
|
port: 9948,
|
|
// 支持 Vue Router 的 history 模式
|
|
historyApiFallback: true
|
|
},
|
|
preview: {
|
|
port: 9948,
|
|
historyApiFallback: true
|
|
},
|
|
build: {
|
|
rollupOptions: {
|
|
output: {
|
|
manualChunks(id) {
|
|
if (id.includes('node_modules/echarts')) {
|
|
return 'echarts'
|
|
}
|
|
if (id.includes('node_modules/element-plus')) {
|
|
return 'element-plus'
|
|
}
|
|
if (id.includes('node_modules/vue') || id.includes('node_modules/vue-router') || id.includes('node_modules/pinia')) {
|
|
return 'vue-vendor'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
chunkSizeWarningLimit: 600
|
|
}
|
|
})
|