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

20 lines
381 B
JavaScript

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