11 lines
191 B
JavaScript
11 lines
191 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: '10mb',
|
|
},
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|