Movie_Search/movie-search/next.config.mjs

23 lines
472 B
JavaScript
Raw Normal View History

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'm.media-amazon.com',
port: '',
pathname: '/images/**',
},
{
protocol: 'https',
hostname: 'lysted.com',
port: '',
pathname: '/assets/**',
},
],
},
};
export default nextConfig;