From 4f9f89522b820bf003e9d9d4a15362465a51f149 Mon Sep 17 00:00:00 2001 From: Ivan Alglave <ivanalglave@outlook.fr> Date: Tue, 22 Nov 2022 10:32:03 +0100 Subject: [PATCH] Removed import of config.template.json and switched to config.json - check README --- src/config/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/index.ts b/src/config/index.ts index 59e24a6..3bf48c8 100644 --- a/src/config/index.ts +++ b/src/config/index.ts @@ -1,4 +1,4 @@ -import * as _config from './config.template.json'; +import * as _config from './config.json'; import { IConfig } from './config.model'; const config = _config as IConfig; -- GitLab