import type { NextConfig } from 'next' const nextConfig: NextConfig = { output: 'standalone', typedRoutes: true, serverExternalPackages: ['@prisma/client', 'minio'], images: { remotePatterns: [ { protocol: 'https', hostname: '*.minio.local', }, ], }, } export default nextConfig