diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-10-02 22:25:47 +1100 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-10-02 22:25:47 +1100 |
commit | 40620daa4e522a9355e7567fa47cf9dac04fb5e6 (patch) | |
tree | 0b942b3818ecde7075296a7613245550c54b09ed /src/util | |
parent | Use imagor for image resizing (diff) | |
download | server-40620daa4e522a9355e7567fa47cf9dac04fb5e6.tar.xz |
Make imagor optional
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/entities/Config.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util/entities/Config.ts b/src/util/entities/Config.ts index cd7a6923..42006fc9 100644 --- a/src/util/entities/Config.ts +++ b/src/util/entities/Config.ts @@ -52,6 +52,7 @@ export interface ConfigValue { endpointPrivate: string | null; resizeHeightMax: number | null; resizeWidthMax: number | null; + imagorServerUrl: string | null; }; api: { defaultVersion: string; @@ -222,6 +223,7 @@ export const DefaultConfigOptions: ConfigValue = { endpointPublic: null, resizeHeightMax: 1000, resizeWidthMax: 1000, + imagorServerUrl: null, }, api: { defaultVersion: "9", |