From c220e7f30ff3dc329b0468cf6fdeacd16d2e219f Mon Sep 17 00:00:00 2001 From: Marco Gallegos Date: Sun, 18 Jan 2026 16:22:00 -0600 Subject: [PATCH] Fix: Remove entire env block from next.config.js - Remove Next.js env block to prevent build errors - NEXT_PUBLIC_* variables are automatically injected by Coolify at runtime - Fixes: env.NEXT_PUBLIC_SUPABASE_URL is missing error --- next.config.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/next.config.js b/next.config.js index b23a516..89862bc 100644 --- a/next.config.js +++ b/next.config.js @@ -23,7 +23,4 @@ const nextConfig = { }, compiler: { removeConsole: false, // Temporarily enable logs for debugging 500 errors - }, -} - module.exports = nextConfig