Nexus / frontend /next.config.mjs
ChandimaPrabath's picture
update
6fb9a09
raw
history blame contribute delete
461 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
dangerouslyAllowSVG: true,
remotePatterns: [
{
protocol: 'https',
hostname: 'via.placeholder.com',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'ui-avatars.com',
port: '',
pathname: '/api/**',
},
],
},
};
export default nextConfig;