nexora / frontend /next.config.mjs
ChandimaPrabath's picture
error page
3673e75
raw
history blame
No virus
557 Bytes
/** @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;