import type { NextConfig } from "next"; const nextConfig: NextConfig = { images: { remotePatterns: [ { protocol: 'https', hostname: '**', }, { protocol: 'http', hostname: '**', }, ], }, typescript: { ignoreBuildErrors: true, }, eslint: { ignoreDuringBuilds: true, }, }; export default nextConfig;