2025-06-19 14:44:00 +08:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2013-Now http://aidex.vip All rights reserved.
|
|
|
|
*/
|
2025-06-19 16:48:26 +08:00
|
|
|
module.exports = {
|
|
|
|
configureWebpack: {
|
|
|
|
devServer: {
|
|
|
|
port : 8081,
|
|
|
|
proxy : {
|
|
|
|
"/js" : {
|
2025-09-01 18:12:53 +08:00
|
|
|
// target : "http://183.230.235.66:11010/api",
|
|
|
|
target : "http://tc.cqsznc.com:7080/api",
|
2025-06-19 16:48:26 +08:00
|
|
|
changeOrigin : true,
|
2025-09-01 18:12:53 +08:00
|
|
|
secure : false,
|
|
|
|
pathRewrite: {
|
|
|
|
'^/js': ''
|
|
|
|
}
|
2025-06-19 16:48:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
productionSourceMap: false,
|
|
|
|
}
|