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

28 lines
475 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: '/**',
},
],
},
experimental: {
serverActions: {
bodySizeLimit: '50mb',
},
},
};
export default nextConfig;