You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
module.exports = {
|
|
outputDir: 'dist',
|
|
assetsDir: 'static',
|
|
devServer: {
|
|
proxy: {
|
|
'/': { //前端任何含/jz的URL请求都会被反向代理。
|
|
target: "http://127.0.0.1:8000", //原来请求的服务器IP地址会换成此地址
|
|
//target: "http://1.15.30.214:8080",
|
|
|
|
changeOrigin: true, // 是否跨域
|
|
pathRewrite: {
|
|
// '.+?/': '/'
|
|
} // 正则替换
|
|
}
|
|
}
|
|
}
|
|
}
|