From 08dc2106160b16481cf877301d6dcf9340375102 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 28 Jun 2022 10:49:43 +0200 Subject: [PATCH] Makefile: add commented-out command useful when debugging Add the command that's needed to disable JavaScript minification, useful for debugging JS errors. No functional changes. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 27f262a2..f946c0e2 100644 --- a/Makefile +++ b/Makefile @@ -52,6 +52,7 @@ webapp-static: addon-packer # e.GET("/app/*", echo.WrapHandler(webAppHandler)) # in `cmd/flamenco-manager/main.go` yarn --cwd web/app build --outDir ../static --base=/app/ +# yarn --cwd web/app build --outDir ../static --base=/app/ --minify false ./addon-packer -filename web/static/flamenco-addon.zip @echo "Web app has been installed into web/static"