Initial commit: 添加项目代码

This commit is contained in:
2026-02-13 18:24:52 +08:00
commit 05d3cc539d
303 changed files with 97922 additions and 0 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'
}
}
}
})