Files
mugladijitalmedya/next.config.ts

26 lines
631 B
TypeScript

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