Files
HoyaHax2025/next.config.ts
suraj.shenoy.b@gmail.com fe8e1faed8 transcript
2025-01-25 18:40:30 -06:00

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;