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.
|
export const lintOnSave = false; |
|
export const devServer = { |
|
proxy: { |
|
'/api': { |
|
target: 'http://localhost:12709/', //这里后台的地址模拟的;应该填写你们真实的后台接口 |
|
ws: false, |
|
changOrigin: true, //允许跨域 |
|
pathRewrite: { '^/api': '' } //路径重写,请求的时候使用这个api就可以 |
|
} |
|
} |
|
}; |