turn off console for prod builds
This commit is contained in:
parent
ef2094f140
commit
8674b7caaf
1 changed files with 1 additions and 1 deletions
2
app.spec
2
app.spec
|
|
@ -63,7 +63,7 @@ exe = EXE( # type: ignore # noqa: F821
|
||||||
debug=False,
|
debug=False,
|
||||||
strip=False,
|
strip=False,
|
||||||
upx=True,
|
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",
|
icon="ui/public/favicon.ico",
|
||||||
onefile=True,
|
onefile=True,
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue