19 lines
417 B
TypeScript
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); |