Files
flux-srl/next.config.ts
T
davidherran cff3dc44be
Deploy to VPS / deploy (push) Has been cancelled
fix: upload limits and timeouts
2026-04-08 11:26:46 -05:00

19 lines
417 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',
},
},
};
export default withNextIntl(nextConfig);