Files
tvone/next.config.ts
T
2026-03-25 14:32:19 +01:00

16 lines
261 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "images.unsplash.com",
pathname: "/**",
},
],
},
};
export default nextConfig;