Files
no-copy-frontend/next.config.ts
T

13 lines
286 B
TypeScript
Raw Normal View History

2025-11-24 18:24:36 +07:00
import type { NextConfig } from "next";
2025-12-10 16:39:13 +07:00
import createNextIntlPlugin from 'next-intl/plugin';
2025-11-24 18:24:36 +07:00
const nextConfig: NextConfig = {
2025-12-23 18:56:48 +07:00
experimental: {
serverActions: {
bodySizeLimit: '6mb',
},
},
2025-11-24 18:24:36 +07:00
};
2025-12-10 16:39:13 +07:00
const withNextIntl = createNextIntlPlugin();
export default withNextIntl(nextConfig);