LoRa_Streamlit / ai-toolkit /ui /next.config.ts
ramimu's picture
Upload 586 files
1c72248 verified
raw
history blame contribute delete
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;