2026-02-26 09:20:51 +01:00
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2026-04-13 15:29:43 +02:00
|
|
|
images: {
|
|
|
|
|
formats: ["image/avif", "image/webp"],
|
|
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
|
|
|
|
protocol: "https",
|
|
|
|
|
hostname: "teeoff.no",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
protocol: "https",
|
|
|
|
|
hostname: "www.teeoff.no",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
protocol: "https",
|
|
|
|
|
hostname: "i.ytimg.com",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2026-02-26 09:20:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|