invite/next.config.js
chris 2c78112a4f Initial commit: E-Invite, a self-hosted Evite-lite
Docker-ready Next.js + Prisma/Postgres e-invitation app: themed invite
pages, RSVP, comments, share links, email + SMS invites with
reply-to-RSVP-by-text, co-hosts, photo dropbox, and browser push
notifications.
2026-07-11 10:11:12 -04:00

13 lines
325 B
JavaScript

/** @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;