22 lines
428 B
JavaScript
22 lines
428 B
JavaScript
|
/**
|
||
|
* Copyright (c) 2013-Now http://aidex.vip All rights reserved.
|
||
|
*/
|
||
|
module.exports = {
|
||
|
configureWebpack: {
|
||
|
devServer: {
|
||
|
port : 8081,
|
||
|
disableHostCheck : true,
|
||
|
proxy : {
|
||
|
"/api" : {
|
||
|
target : "http://127.0.0.1:8080",
|
||
|
// target : "http://183.230.235.66:11010",
|
||
|
// target : "http://tc.cqsznc.com:7080",
|
||
|
changeOrigin : true,
|
||
|
secure : false
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
productionSourceMap: false,
|
||
|
}
|