From e9af37edf77e9bc5e842e4d9b2fe60aa66707e10 Mon Sep 17 00:00:00 2001 From: Lily Rose Date: Thu, 17 Jul 2025 20:04:39 +1000 Subject: [PATCH] Remove minify --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c3b338d..b5c8f0e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN cd /build/server && gleam deps download # Compile the client code and output to server's static directory RUN cd /build/client \ && gleam add --dev lustre_dev_tools \ - && gleam run -m lustre/dev build app --minify --outdir=/build/server/priv/static + && gleam run -m lustre/dev build app --outdir=/build/server/priv/static # Compile the server code RUN cd /build/server \