Files
ai-toolkit/ui/next.config.ts
2026-01-24 12:44:17 -07:00

20 lines
383 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
devIndicators: {
buildActivity: false,
},
typescript: {
// Remove this. Build fails because of route types
ignoreBuildErrors: true,
},
experimental: {
serverActions: {
bodySizeLimit: '100gb',
},
middlewareClientMaxBodySize: '100gb',
},
};
export default nextConfig;