ai-toolkit / ui /next.config.ts
jbilcke-hf's picture
Convert AI-Toolkit to a HF Space
8822914
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;