import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", serverExternalPackages: ["bcryptjs", "@prisma/adapter-pg", "pg"], images: { remotePatterns: [ { protocol: "https", hostname: "**" }, ], }, }; export default nextConfig;