17 lines
485 B
JavaScript
17 lines
485 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
images: {
|
|
unoptimized: false,
|
|
domains: ['www.qrmaster.net', 'qrmaster.net', 'images.qrmaster.net'],
|
|
formats: ['image/webp', 'image/avif'],
|
|
deviceSizes: [640, 750, 828, 1080, 1200, 1920, 2048, 3840],
|
|
imageSizes: [16, 32, 48, 64, 96, 128, 256, 384],
|
|
},
|
|
experimental: {
|
|
serverComponentsExternalPackages: ['@prisma/client', 'bcryptjs'],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|