correction V4

This commit is contained in:
2026-03-02 13:41:05 +01:00
parent 90f5431c3d
commit 4b0c05cce0
162 changed files with 215 additions and 659 deletions

View File

@@ -1,13 +1,14 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
serverExternalPackages: ["@prisma/client", "bcrypt", "bcryptjs"],
serverExternalPackages: ["bcrypt", "bcryptjs"],
typescript: {
// NextAuth v5 beta handlers have type mismatches with Next.js 15
// Remove this when next-auth v5 stable releases
ignoreBuildErrors: true,
},
output: "standalone",
};
export default nextConfig;