Socratic-Lens / next.config.ts
Jainish1808
Initial commit - Socratic Lens
4000a4c
raw
history blame contribute delete
209 Bytes
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
experimental: {
serverActions: {
bodySizeLimit: '10mb',
},
},
};
export default nextConfig;