import type { NextConfig } from "next"; const nextConfig: NextConfig = { sassOptions: { silenceDeprecations: ['legacy-js-api'], }, images: { remotePatterns: [ { hostname: "cdn.sanity.io", pathname: "/images/**", protocol: "https", } ] }, }; export default nextConfig;