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.
17 lines
707 B
17 lines
707 B
module.exports = {
|
|
lintOnSave: false,
|
|
// devServer: {
|
|
// proxy: { //配置跨域
|
|
// '/admin': {
|
|
// target: 'http://test.qingweilai888.xyz', //这里后台的地址模拟的;应该填写你们真实的后台接口
|
|
// changOrigin: true, //允许跨域
|
|
// pathRewrite: {
|
|
// /* 重写路径,当我们在浏览器中看到请求的地址为:http://localhost:8080/api/core/getData/userInfo 时
|
|
// 实际上访问的地址是:http://121.121.67.254:8185/core/getData/userInfo,因为重写了 /api
|
|
// */
|
|
// '^/admin': 'admin'
|
|
// }
|
|
// },
|
|
// }
|
|
// },
|
|
}
|