From 8243ac7e31abd6e9eed7b95f5aa8a959381d3bdc Mon Sep 17 00:00:00 2001 From: Mylloon Date: Wed, 4 Sep 2024 13:26:05 +0200 Subject: [PATCH] chore: comments (#158) take from #154 e43234f7905efee3ea1bdb4f056e54717e012180 0747c3ebe4c9da956fcf4a0a074044085eabac19 Reviewed-on: https://git.mylloon.fr/ConfrerieDuKassoulait/Botanique/pulls/158 Co-authored-by: Mylloon Co-committed-by: Mylloon --- src/index.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/index.ts b/src/index.ts index fc96eb6..242d749 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,12 +1,10 @@ -/** Load the app. */ +/** Load the app */ const start_app = () => { import("./load").then((l) => l.run().catch((error) => console.error(error))); }; // Load .env if not in prod if (process.env.NODE_ENV !== "production") { - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore import("dotenv").then((c) => { c.config({ path: "./config/.env" });