import type { NextConfig } from "next"; const nextConfig: NextConfig = { images: { formats: ["image/avif", "image/webp"], remotePatterns: [ { protocol: "https", hostname: "teeoff.no", }, { protocol: "https", hostname: "www.teeoff.no", }, { protocol: "https", hostname: "i.ytimg.com", }, ], }, }; export default nextConfig;