1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/config/types/CdnConfiguration.ts b/src/util/config/types/CdnConfiguration.ts
index 6f523893..e547b9af 100644
--- a/src/util/config/types/CdnConfiguration.ts
+++ b/src/util/config/types/CdnConfiguration.ts
@@ -23,6 +23,6 @@ export class CdnConfiguration extends EndpointConfiguration {
resizeWidthMax: number = 1000;
imagorServerUrl: string | null = null;
- endpointPublic: string | null = "http://localhost:3001";
- endpointPrivate: string | null = "http://localhost:3001";
+ endpointPublic: string | null = null;
+ endpointPrivate: string | null = null;
}
|