Dine360-Marketing-Website/next.config.ts
2026-04-03 10:21:51 +05:30

37 lines
739 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'images.unsplash.com',
},
{
protocol: 'https',
hostname: 'www.transparenttextures.com',
},
{
protocol: 'https',
hostname: 'png.pngtree.com',
},
{
protocol: 'https',
hostname: 'purepng.com',
},
{
protocol: 'https',
hostname: 'cdn-icons-png.flaticon.com',
},
{
protocol: 'https',
hostname: 'images.pexels.com',
}, {
protocol: 'https',
hostname: 'randomuser.me',
}, ],
},
};
export default nextConfig;