Files
lumina-nextjs-template/next.config.js

21 lines
421 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
// Note: 'output: standalone' is set during Docker build, not in dev mode
experimental: {
serverActions: {
bodySizeLimit: '2mb',
},
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**.supabase.co',
},
],
},
};
module.exports = nextConfig;