DigitalConsumer.FixMyGlass/vue.config.js
2021-10-26 10:03:19 -04:00

13 lines
No EOL
277 B
JavaScript

module.exports = {
outputDir: 'dist/fmg',
devServer: {
port: 8080,
proxy: {
'api/v1/content*':{
target: 'https://localhost:44360/',
ws: false,
changeOrigin: true
}
}
}
}