Files
plume/next.config.ts
2026-03-02 13:41:05 +01:00

15 lines
353 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
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;