vivid-cdn/next.config.ts
2025-06-11 22:05:20 +02:00

26 lines
447 B
TypeScript

import type {NextConfig} from 'next';
const nextConfig: NextConfig = {
/* config options here */
typescript: {
ignoreBuildErrors: true,
},
eslint: {
ignoreDuringBuilds: true,
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'placehold.co',
port: '',
pathname: '/**',
},
],
},
serverActions: {
bodySizeLimit: '500mb',
},
};
export default nextConfig;