fix api proxy, route urls and filters

This commit is contained in:
2021-07-16 00:39:41 -06:00
parent 9253a84d7e
commit dcd3c0a95b
5 changed files with 20 additions and 5 deletions

View File

@ -0,0 +1,10 @@
module.exports = {
devServer: {
proxy: {
'/api/': {
target: 'http://localhost:3000',
changeOrigin: true
},
}
}
}