Don't set default cdn endpoints. Null endpoints means to not update them in GLOBAL_ENV. TODO: Don't use private endpoint locations in global env if public is not set, as this limits infra config

This commit is contained in:
Madeline 2023-01-26 01:10:05 +11:00
parent e296598e1c
commit 1dcaa9f5f9

View File

@ -23,6 +23,6 @@ export class CdnConfiguration extends EndpointConfiguration {
resizeWidthMax: number = 1000; resizeWidthMax: number = 1000;
imagorServerUrl: string | null = null; imagorServerUrl: string | null = null;
endpointPublic: string | null = "http://localhost:3001"; endpointPublic: string | null = null;
endpointPrivate: string | null = "http://localhost:3001"; endpointPrivate: string | null = null;
} }