1
0
Fork 0

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,
"ws": true
},
"/": {
"target": "http://localhost:3000/client",
"secure": false
"/!(client)**": {
"target": "http://localhost:3000/client/index.html",
"secure": false,
"logLevel": "debug"
},
"/!(client)**/**": {
"target": "http://localhost:3000/client/index.html",
"secure": false,
"logLevel": "debug"
}
}