23 lines
439 B
JavaScript
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,
|
|
}
|