From 461e3ff7c9876876722e545c9fb3a4048a5253c4 Mon Sep 17 00:00:00 2001 From: charlesgauthereau Date: Tue, 23 Sep 2025 19:55:07 +0200 Subject: [PATCH] Ready for 1.1.2-rc.1 --- next.config.ts | 3 --- src/db/index.ts | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/next.config.ts b/next.config.ts index ea10111f..5975ae40 100644 --- a/next.config.ts +++ b/next.config.ts @@ -44,9 +44,6 @@ const nextConfig: NextConfig = { eslint: { ignoreDuringBuilds: true, }, - compiler: { - removeConsole: process.env.NODE_ENV === "production", - }, experimental: { nodeMiddleware: true, }, diff --git a/src/db/index.ts b/src/db/index.ts index f927b9b7..f4e441f3 100644 --- a/src/db/index.ts +++ b/src/db/index.ts @@ -37,7 +37,7 @@ export const schemas = { export const db = drizzle({ client: pool, - // logger: true, + logger: process.env.NODE_ENV != 'production', schema: schemas, });