Files
lumina-nextjs-template/next.config.js
2025-12-23 04:19:57 +01:00

21 lines
369 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'standalone',
experimental: {
serverActions: {
bodySizeLimit: '2mb',
},
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**.supabase.co',
},
],
},
};
module.exports = nextConfig;