Merge pull request #638 from arodland/patch-1

fix loading default config
This commit is contained in:
DJ2LS 2024-02-11 09:02:29 +01:00 committed by GitHub
commit c3d558a07a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -101,7 +101,7 @@ const defaultConfig = {
},
};
nconf.defaults(defaultConfig.local);
nconf.defaults(defaultConfig);
nconf.required(["local:host", "local:port"]);
export const settingsStore = reactive(defaultConfig);