/** @type {import('next').NextConfig} */ | |
const nextConfig = { | |
images: { | |
dangerouslyAllowSVG: true, | |
remotePatterns: [ | |
{ | |
protocol: 'https', | |
hostname: 'artworks.thetvdb.com', | |
port: '', | |
pathname: '/**', | |
}, | |
{ | |
protocol: 'https', | |
hostname: 'via.placeholder.com', | |
port: '', | |
pathname: '/**', | |
}, | |
{ | |
protocol: 'https', | |
hostname: 'eu.ui-avatars.com', | |
port: '', | |
pathname: '/api/**', | |
}, | |
], | |
}, | |
}; | |
export default nextConfig; | |