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.
13 lines
325 B
JavaScript
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;
|