Files
gulermak_metro/next.config.ts
Şahan Hasret a6c86f6de7 Image Fix
2025-10-21 23:13:22 +03:00

15 lines
234 B
TypeScript

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