23 lines
472 B
JavaScript
23 lines
472 B
JavaScript
|
/** @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;
|