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