/** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', images: { remotePatterns: [], dangerouslyAllowSVG: true, contentSecurityPolicy: "default-src 'self'; script-src 'none'; sandbox;", }, experimental: { serverActions: { bodySizeLimit: '2mb', }, }, } module.exports = nextConfig