/** @type {import('next').NextConfig} */ const nextConfig = { // Server Actions default to a 1MB request body limit; photo uploads // (src/lib/photoStorage.ts) allow up to 8MB, so raise the ceiling to match. experimental: { serverActions: { bodySizeLimit: '10mb', }, }, }; module.exports = nextConfig;