fix(docker,test): 修复 Docker 构建和测试配置

- 更新 Dockerfile 使用本地编译的 jar 文件
- 修复 vite.config.ts 移除未使用的 lodash-es 依赖
- 更新测试密码为 Test@123
This commit is contained in:
张翔
2026-04-28 16:04:45 +08:00
parent 31ee0d4ece
commit f44cee4958
6 changed files with 9 additions and 83 deletions
+2 -2
View File
@@ -39,7 +39,7 @@ export default defineConfig({
manualChunks: {
'vue-vendor': ['vue', 'vue-router', 'pinia'],
'element-plus': ['element-plus'],
'utils': ['lodash-es', 'axios']
'utils': ['axios']
}
}
},
@@ -47,7 +47,7 @@ export default defineConfig({
reportCompressedSize: false
},
optimizeDeps: {
include: ['vue', 'vue-router', 'pinia', 'element-plus', 'axios', 'lodash-es'],
include: ['vue', 'vue-router', 'pinia', 'element-plus', 'axios'],
exclude: []
},
css: {