Files
gulermak_metro/next.config.ts
2025-10-21 23:16:54 +03:00

19 lines
313 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'images.pexels.com',
},
{
protocol: 'https',
hostname: 'picsum.photos',
},
],
},
};
export default nextConfig;