import type { NextConfig } from 'next'; const nextConfig: NextConfig = { output: 'standalone', serverExternalPackages: [ 'pino', 'pino-pretty', 'bullmq', 'ioredis', 'minio', 'postgres', 'better-auth', 'nodemailer', ], images: { remotePatterns: [{ protocol: 'https', hostname: '*.portnimara.com' }], }, experimental: { typedRoutes: true, }, }; export default nextConfig;