diff --git a/next.config.ts b/next.config.ts index 225e495..2b84c5f 100644 --- a/next.config.ts +++ b/next.config.ts @@ -2,6 +2,10 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: 'standalone', + serverExternalPackages: ['busboy'], + experimental: { + middlewareClientMaxBodySize: '500mb', + }, }; export default nextConfig;