QR-master/next.config.mjs

13 lines
318 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
images: {
unoptimized: true,
domains: ['www.qrmaster.com', 'qrmaster.com', 'images.qrmaster.com']
},
experimental: {
serverComponentsExternalPackages: ['@prisma/client', 'bcryptjs']
}
}
export default nextConfig