Files
2026-05-22 09:17:28 +02:00

14 lines
258 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "i.ytimg.com",
},
],
},
};
module.exports = nextConfig;