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: {
|
2025-12-26 19:21:39 +07:00
|
|
|
bodySizeLimit: '10mb',
|
2025-12-23 18:56:48 +07:00
|
|
|
},
|
|
|
|
|
},
|
2025-11-24 18:24:36 +07:00
|
|
|
};
|
|
|
|
|
|
2025-12-10 16:39:13 +07:00
|
|
|
const withNextIntl = createNextIntlPlugin();
|
|
|
|
|
export default withNextIntl(nextConfig);
|