diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-05-31 20:32:37 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-05-31 20:32:37 +0200 |
commit | 24a7accc16ec2f999e19ec57e59b1e94c457e1f0 (patch) | |
tree | 351d18193cfe9e72c41774fa07f74e682386dfa6 /src/util | |
parent | 1.3.15 (diff) | |
download | server-24a7accc16ec2f999e19ec57e59b1e94c457e1f0.tar.xz |
:bug: fix config
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/Config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/Config.ts b/src/util/Config.ts index ca6daa16..f125bd18 100644 --- a/src/util/Config.ts +++ b/src/util/Config.ts @@ -205,7 +205,7 @@ export const DefaultOptions: DefaultOptions = { }, }; -export const ConfigSchema = new Schema(Object); +export const ConfigSchema = new Schema({}, { strict: false }); export interface DefaultOptionsDocument extends DefaultOptions, Document {} |