20 lines
436 B
TypeScript
20 lines
436 B
TypeScript
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,
|
|
},
|
|
output: "standalone",
|
|
experimental: {
|
|
turbopack: {
|
|
root: './',
|
|
},
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|