/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, typescript: { ignoreBuildErrors: true, }, compiler: { styledComponents: true, }, images: { remotePatterns: [ { protocol: "https", hostname: "res.cloudinary.com", }, { protocol: "https", hostname: "via.placeholder.com", }, { protocol: "https", hostname: "picsum.photos", }, ], formats: ["image/avif", "image/webp"], }, }; export default nextConfig;