File size: 557 Bytes
6ba7c23 03769d0 3673e75 cb363ec 3673e75 03769d0 6ba7c23 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
/** @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;
|