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

15 lines
232 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: {
'^/api': '',
},
},
},
},
};