chore: update project files

This commit is contained in:
AIGC Developer
2025-11-13 17:01:39 +08:00
parent 83bf064bb2
commit 2961d2b0d0
344 changed files with 11549 additions and 15941 deletions

View File

@@ -0,0 +1,34 @@
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
// 生产/开发环境配置
publicPath: process.env.NODE_ENV === 'production' ? '/' : '/',
outputDir: 'dist',
assetsDir: 'static',
// 开发服务器配置
devServer: {
port: 8081,
proxy: {
'/api': {
// 开发时代理到本地后端(统一为 localhost:8080
target: 'http://localhost:8080',
changeOrigin: true
// 不要移除 /api 前缀,后端路由以 /api 开头
}
}
},
// 生产环境配置
configureWebpack: {
optimization: {
splitChunks: {
chunks: 'all'
}
}
}
})