Skip to content

Commit

Permalink
fix: disable minify configuration for now
Browse files Browse the repository at this point in the history
  • Loading branch information
netomi committed Feb 26, 2024
1 parent f503b7a commit ceb1743
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions otterdog/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@
app.logger.error(f"APP_ROOT '{app_config.APP_ROOT}' does not exist, exiting.")
exit(1)

if not DEBUG:
from quart_minify import Minify # type: ignore

Minify(app=app, html=True, js=True, cssless=False)
# if not DEBUG:
# from quart_minify import Minify # type: ignore
#
# Minify(app=app, html=True, js=True, cssless=False)

if DEBUG:
app.logger.info("DEBUG = " + str(DEBUG))
Expand Down

0 comments on commit ceb1743

Please sign in to comment.