vue proxyTable 配置及GitBook地址
2018-03-13 本文已影响0人
萌萌哒蟹蟹
proxyTable: {
// proxy all requests starting with /api to jsonplaceholder
'/api': {
target: 'http://jsonplaceholder.typicode.com',
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
}