Removed serverExternalPackages and output configurations from next.config.ts and added build output log.

This commit is contained in:
2026-03-02 14:06:45 +01:00
parent 9ba17552e5
commit 96e3dd15ed
2 changed files with 71 additions and 2 deletions

View File

@@ -1,14 +1,12 @@
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;