From 6303b357abaaa8a84fdb1ce7fc651d663492375c Mon Sep 17 00:00:00 2001 From: David Baker Date: Wed, 21 Dec 2022 10:01:37 +0000 Subject: [PATCH] Update default homeserver to match what the docs say --- src/config/ConfigOptions.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/config/ConfigOptions.ts b/src/config/ConfigOptions.ts index bdfbe584..45ecb44d 100644 --- a/src/config/ConfigOptions.ts +++ b/src/config/ConfigOptions.ts @@ -33,10 +33,8 @@ export interface ConfigOptions { export const DEFAULT_CONFIG: ConfigOptions = { default_server_config: { ["m.homeserver"]: { - // These are probably poor guesses - we may want to just not work without - // a config file. - base_url: `${window.location.protocol}//${window.location.host}`, - server_name: window.location.host, + base_url: "http://localhost:8008", + server_name: "localhost", }, }, };