From 5749525d2631e9c3fce452a58826e2a7a68a25fe Mon Sep 17 00:00:00 2001 From: Michael Matloka Date: Thu, 4 Jan 2024 16:38:41 +0100 Subject: [PATCH] Solve annoying Tailwind logs --- bin/start-frontend | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/start-frontend b/bin/start-frontend index 8e5ba74fc9121..f71a8c35936a7 100755 --- a/bin/start-frontend +++ b/bin/start-frontend @@ -4,5 +4,9 @@ set -e # pass first argument to WEBPACK_HOT_RELOAD_HOST [ $# -ge 1 ] && export WEBPACK_HOT_RELOAD_HOST=$1 +# DEBUG=1 might be exported to this script from a parent, but we don't want it in the frontend build process +# In particular, DEBUG=1 enables a lot of Tailwind logging we don't need, so let's set 0 instead +export DEBUG=0 + pnpm install pnpm start