Files
ayrisapart/next.config.ts
2026-04-19 17:23:31 +03:00

19 lines
320 B
TypeScript

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