Files
Pinry/pinry-spa/vue.config.js
2019-12-08 12:58:50 -05:00

15 lines
232 B
JavaScript

module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://localhost:8000/',
changeOrigin: true,
ws: true,
pathRewrite: {
'^/api': '',
},
},
},
},
};