Force dev frontend to run on IPv4

This commit is contained in:
D. Berge
2023-10-29 20:46:11 +01:00
parent a06cdde449
commit 1576b121e6

View File

@@ -7,10 +7,10 @@ module.exports = {
host: "0.0.0.0",
proxy: {
"^/api(/|$)": {
target: "http://localhost:3000",
target: "http://127.0.0.1:3000",
},
"^/ws(/|$)": {
target: "ws://localhost:3000",
target: "ws://127.0.0.1:3000",
ws: true
}
}