From 707d2127e64b7c997a2d48a846028753e62f4bab Mon Sep 17 00:00:00 2001 From: streaper2 Date: Sat, 28 Feb 2026 19:58:29 +0100 Subject: [PATCH] correction nextconfig --- .env.local.old | 9 --------- next.config.ts | 2 ++ 2 files changed, 2 insertions(+), 9 deletions(-) delete mode 100644 .env.local.old diff --git a/.env.local.old b/.env.local.old deleted file mode 100644 index 155004f..0000000 --- a/.env.local.old +++ /dev/null @@ -1,9 +0,0 @@ -# Server-only -GEMINI_API_KEY=AIzaSyBjMxaRq4psBbvtdks0iYGkv-r9midKSh4 - - -# Database — Replace with your actual PostgreSQL URL (e.g. from Neon, Supabase, or local) -DATABASE_URL="postgresql://admin:adminpassword@192.168.1.25:5432/plumeia?schema=public" - -# NextAuth -AUTH_SECRET="change-me-to-a-random-string-at-least-32-chars" diff --git a/next.config.ts b/next.config.ts index 6d46ad6..8008bdf 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,9 +1,11 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { + serverExternalPackages: ["@prisma/client", "bcrypt", "bcryptjs"], typescript: { // NextAuth v5 beta handlers have type mismatches with Next.js 15 // Remove this when next-auth v5 stable releases + ignoreBuildErrors: true, }, };