style(vue.config.js):修复 eslint 警告- 调整 devServer 配置的缩进,使代码结构更清晰- 移除多余的逗号,提高代码质量

This commit is contained in:
陈昱达
2025-08-26 17:38:16 +08:00
parent 2c3f872f3a
commit 8277e4ab6e

View File

@@ -13,16 +13,17 @@ module.exports = {
productionSourceMap: false,
devServer: {
https: false,
},
proxy: {
'/backmanage': {
target: process.env.VUE_APP_ADMIN,
changeOrigin: true,
pathRewrite: {
'^/backmanage': '/',
proxy: {
'/backmanage': {
target: process.env.VUE_APP_ADMIN,
changeOrigin: true,
pathRewrite: {
'^/backmanage': '/',
},
},
},
},
css: {
sourceMap: true, // 查看css属于哪个css文件
loaderOptions: {