import type { NextConfig } from "next"; const nextConfig: NextConfig = { devIndicators: { buildActivity: false, }, images: { remotePatterns: [ { protocol: "https", hostname: "static.wixstatic.com", }, { protocol: "http", hostname: "static.wixstatic.com", }, ], }, typescript: { ignoreBuildErrors: true, }, }; export default nextConfig;