From 8674b7caafe4588d8b93fd0e43ea337f94523b11 Mon Sep 17 00:00:00 2001 From: arabcoders Date: Sun, 6 Jul 2025 00:09:18 +0300 Subject: [PATCH] turn off console for prod builds --- app.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.spec b/app.spec index 9857a34d..149a3c00 100644 --- a/app.spec +++ b/app.spec @@ -63,7 +63,7 @@ exe = EXE( # type: ignore # noqa: F821 debug=False, strip=False, upx=True, - console=True, # Turn on to True if you want a console window for debugging. + console=False, # Turn on to True if you want a console window for debugging. icon="ui/public/favicon.ico", onefile=True, )