From ab2fe5765a8e339f382641707c3934054a10fca0 Mon Sep 17 00:00:00 2001 From: Thomas Huber Date: Tue, 21 Jul 2026 12:25:01 +0200 Subject: [PATCH] fix: #90 disabled turbopackMinify in production to sidestep bug in template editor (cherry picked from commit 0cbce56011cd078435dce7920e261ea72563b13f) --- next.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.ts b/next.config.ts index 22eafea7..7d925858 100644 --- a/next.config.ts +++ b/next.config.ts @@ -6,6 +6,7 @@ const nextConfig: NextConfig = { serverExternalPackages: ['@react-pdf/renderer', 'react-pdf-html'], experimental: { inlineCss: true, + turbopackMinify: false, }, };