23 lines
425 B
TypeScript
23 lines
425 B
TypeScript
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;
|