feat: 完善 Prompt 管理与生成流程配置

This commit is contained in:
王鹏
2026-07-15 17:31:13 +08:00
parent 84d3c8fc05
commit de98ea59b1
93 changed files with 3474 additions and 980 deletions

View File

@@ -0,0 +1,18 @@
const port = process.env.PORT || 8081
const apiBaseUrl = process.env.VUE_APP_API_BASE_URL || "http://localhost:8080"
module.exports = {
transpileDependencies: [],
devServer: {
port,
proxy: {
"/api": {
target: apiBaseUrl,
changeOrigin: true,
pathRewrite: {
"^/api": ""
}
}
}
}
}