summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--frontend/package.json7
1 files changed, 6 insertions, 1 deletions
diff --git a/frontend/package.json b/frontend/package.json
index 92c74d9d..7278ded0 100644
--- a/frontend/package.json
+++ b/frontend/package.json
@@ -38,5 +38,10 @@
"flow": "flow",
"postinstall": "flow-typed install"
},
- "proxy": "http://localhost:8080"
+ "proxy": {
+ "/*": {
+ "target": "http://localhost:8080",
+ "ws": true
+ }
+ }
}
bgstack15