From 445016523ef63388af8ce484ce0f33b494575fd5 Mon Sep 17 00:00:00 2001 From: aoirint Date: Mon, 28 Feb 2022 10:58:31 +0900 Subject: [PATCH] fix comment --- src/background.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/background.ts b/src/background.ts index 7227b9dbf7..87b92dbcb8 100644 --- a/src/background.ts +++ b/src/background.ts @@ -74,7 +74,7 @@ process.on("unhandledRejection", (reason) => { log.error(reason); }); -// .envから設定を読み込み +// .envから設定をprocess.envに読み込み const appDirPath = path.dirname(app.getPath("exe")); const envPath = path.join(appDirPath, ".env"); dotenv.config({ path: envPath });