File size: 461 Bytes
9eea1c5 6fb9a09 9eea1c5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
/** @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;
|