diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-12-21 15:37:16 +1100 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-12-21 15:37:16 +1100 |
commit | 92227cdf1872c516ccdc5aa2de348f8fec410e00 (patch) | |
tree | 1a7a2be852a14ad6e42e1617d99b678f3d7895b8 /src/util | |
parent | Fix the roles bug (diff) | |
download | server-92227cdf1872c516ccdc5aa2de348f8fec410e00.tar.xz |
Set default cdn endpoints so that local testing works
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/config/types/CdnConfiguration.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util/config/types/CdnConfiguration.ts b/src/util/config/types/CdnConfiguration.ts index f58c1c64..3c4dd163 100644 --- a/src/util/config/types/CdnConfiguration.ts +++ b/src/util/config/types/CdnConfiguration.ts @@ -4,4 +4,7 @@ export class CdnConfiguration extends EndpointConfiguration { resizeHeightMax: number = 1000; resizeWidthMax: number = 1000; imagorServerUrl: string | null = null; + + endpointPublic: string | null = "http://localhost:3001"; + endpointPrivate: string | null = "http://localhost:3001"; } \ No newline at end of file |