From 9b1edfeea61eba579cd555ba077ce8ef1a7fbf75 Mon Sep 17 00:00:00 2001 From: Yuya Tanaka Date: Mon, 7 Oct 2024 22:51:30 +0900 Subject: [PATCH] Fix DEBUG enabled for production build --- src/utils/debug.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/debug.ts b/src/utils/debug.ts index a52b5e8..4785ccd 100644 --- a/src/utils/debug.ts +++ b/src/utils/debug.ts @@ -1 +1 @@ -export const DEBUG = true; +export const DEBUG = false;