15 lines
235 B
TypeScript

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