12 lines
215 B
TypeScript
12 lines
215 B
TypeScript
import { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: '10mb', // Adjust the size limit as needed
|
|
},
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|