|
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;
|