From 16eff151ea7d7f90c095f085d8e4a6d69e26dbe6 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Fri, 13 Aug 2021 20:53:29 +0200 Subject: :bug: fix dependencies and build for bundle --- util/src/util/Config.ts | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'util/src') diff --git a/util/src/util/Config.ts b/util/src/util/Config.ts index b4648668..a23d724d 100644 --- a/util/src/util/Config.ts +++ b/util/src/util/Config.ts @@ -43,9 +43,11 @@ export interface KafkaBroker { export interface DefaultOptions { gateway: { + endpointClientKeepDefault?: boolean; endpoint: string | null; }; cdn: { + endpointClientKeepDefault?: boolean; endpoint: string | null; }; general: { @@ -148,9 +150,11 @@ export interface DefaultOptions { export const DefaultOptions: DefaultOptions = { gateway: { + endpointClientKeepDefault: false, endpoint: null, }, cdn: { + endpointClientKeepDefault: false, endpoint: null, }, general: { -- cgit 1.5.1