Fix angular proxy in dev mode

This commit is contained in:
Chocobozzz 2019-07-25 11:40:19 +02:00
parent 1a56b4f680
commit 2c434c348c
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 9 additions and 3 deletions

View File

@ -20,8 +20,14 @@
"secure": false, "secure": false,
"ws": true "ws": true
}, },
"/": { "/!(client)**": {
"target": "http://localhost:3000/client", "target": "http://localhost:3000/client/index.html",
"secure": false "secure": false,
"logLevel": "debug"
},
"/!(client)**/**": {
"target": "http://localhost:3000/client/index.html",
"secure": false,
"logLevel": "debug"
} }
} }