summary refs log tree commit diff
path: root/src/util/config/types/CdnConfiguration.ts
blob: 3c4dd1634721da014ff0ddac81f3d2fc03f5c955 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { EndpointConfiguration } from "./EndpointConfiguration";

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";
}