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
This commit is contained in:
Marco Gallegos
2026-01-18 16:22:00 -06:00
parent 46d6d3e625
commit c220e7f30f

View File

@@ -23,7 +23,4 @@ const nextConfig = {
}, },
compiler: { compiler: {
removeConsole: false, // Temporarily enable logs for debugging 500 errors removeConsole: false, // Temporarily enable logs for debugging 500 errors
},
}
module.exports = nextConfig module.exports = nextConfig