Files
Developers Digest 69bd93bae7 v3
2025-11-19 10:15:21 -05:00

15 lines
231 B
TypeScript

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