/** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', experimental: { serverComponentsExternalPackages: ['@prisma/client', 'bcryptjs'], }, images: { remotePatterns: [ { protocol: 'https', hostname: '**', }, ], }, } module.exports = nextConfig