Files
SmartParks_uniapp/vue.config.js
2025-09-01 18:12:53 +08:00

23 lines
439 B
JavaScript

/**
* Copyright (c) 2013-Now http://aidex.vip All rights reserved.
*/
module.exports = {
configureWebpack: {
devServer: {
port : 8081,
proxy : {
"/js" : {
// target : "http://183.230.235.66:11010/api",
target : "http://tc.cqsznc.com:7080/api",
changeOrigin : true,
secure : false,
pathRewrite: {
'^/js': ''
}
}
}
}
},
productionSourceMap: false,
}