fixes websockets

This commit is contained in:
Sara
2023-11-02 18:56:09 +01:00
parent 0d9f66c097
commit fbba20e136
2 changed files with 6 additions and 3 deletions

View File

@@ -8,6 +8,7 @@ const localConfig = {
browse: true,
},
api_url: "http://127.0.0.1:1250",
websocket_url: "ws://127.0.0.1:1250",
auth_callback_url: "http://localhost:3000/auth-callback",
};
@@ -17,6 +18,7 @@ type EdgeConfig = {
[featureName in "requireLogin" | "privacy" | "browse"]: boolean;
};
auth_callback_url: string;
websocket_url: string;
api_url: string;
};
};