ProjectGrid.frontend/vue.config.js

13 lines
233 B
JavaScript

module.exports = {
devServer: {
"public": "vue.hello-world.games",
"port": 10002,
proxy: {
'^/api': {
target: 'https://localhost:5001',
changeOrigin: true
}
}
}
}