mirror of
https://github.com/ostris/ai-toolkit.git
synced 2026-01-26 16:39:47 +00:00
19 lines
341 B
TypeScript
19 lines
341 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: '100mb',
|
|
},
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|