ai-toolkit / ui /next.config.ts
jbilcke-hf's picture
jbilcke-hf HF Staff
Upload 430 files
3cc1e25 verified
raw
history blame
291 Bytes
import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
typescript: {
// Remove this. Build fails because of route types
ignoreBuildErrors: true,
},
experimental: {
serverActions: {
bodySizeLimit: '100mb',
},
},
};
export default nextConfig;