- 修改 .env.production 文件中的 VITE_API_BASE_URL 为新的后端服务地址- 在 package.json 中添加 build:frontend 脚本,用于前端项目构建 - 注释掉 pom.xml 中的 Docker 镜像构建配置
29 lines
626 B
JSON
29 lines
626 B
JSON
{
|
|
"name": "biji-qianduan",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"build:frontend": "vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@kangc/v-md-editor": "^2.2.4",
|
|
"codemirror": "^6.0.1",
|
|
"element-plus": "^2.10.4",
|
|
"highlight.js": "^11.11.1",
|
|
"html2canvas": "^1.4.1",
|
|
"jspdf": "^3.0.1",
|
|
"pinia": "^3.0.3",
|
|
"pinia-plugin-persistedstate": "^4.4.1",
|
|
"vditor": "^3.11.1",
|
|
"vue": "^3.5.13"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "^5.2.3",
|
|
"vite": "^6.3.5"
|
|
}
|
|
}
|