next.config.ts 303 B

123456789101112
  1. import type { NextConfig } from 'next';
  2. const nextConfig: NextConfig = {
  3. output: process.env.VERCEL ? undefined : 'standalone',
  4. transpilePackages: ['mathml2omml', 'pptxgenjs'],
  5. serverExternalPackages: [],
  6. experimental: {
  7. proxyClientMaxBodySize: '200mb',
  8. },
  9. };
  10. export default nextConfig;