Files
flux-srl/next.config.ts
T
davidherran 80bb1962b2
Deploy to VPS / deploy (push) Has been cancelled
fix: bodySizeLimit type
2026-04-08 11:28:56 -05:00

19 lines
426 B
TypeScript

import createNextIntlPlugin from 'next-intl/plugin';
const withNextIntl = createNextIntlPlugin('./src/i18n/request.ts');
const nextConfig = {
output: "standalone" as const,
images: {
qualities: [75, 90, 100],
},
reactStrictMode: true,
serverExternalPackages: ['nodemailer'],
experimental: {
serverActions: {
bodySizeLimit: '500mb' as const,
},
},
};
export default withNextIntl(nextConfig);