Files
Pinry/pinry-spa/vue.config.js

15 lines
236 B
JavaScript
Raw Normal View History

2019-11-22 17:22:40 +08:00
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://localhost:8000/',
changeOrigin: true,
ws: true,
pathRewrite: {
2019-11-22 19:12:02 +08:00
'^/api': '/api',
2019-11-22 17:22:40 +08:00
},
},
},
},
};