transcript

This commit is contained in:
suraj.shenoy.b@gmail.com
2025-01-25 18:40:30 -06:00
parent 9f8fbccdfe
commit fe8e1faed8
6 changed files with 177 additions and 93 deletions

View File

@@ -1,6 +1,11 @@
import type { NextConfig } from "next";
import { NextConfig } from 'next';
const nextConfig: NextConfig = {
experimental: {
serverActions: {
bodySizeLimit: '10mb', // Adjust the size limit as needed
},
},
};
export default nextConfig;