sandbox-web-ide/frontend/next.config.mjs
Akhileshrangani4 e9f03d52fd feat: user avatar images
- added user avatars for each user
- it will fetch user images from github or google and if there is no image then it will show initials
2024-11-10 23:40:10 -05:00

19 lines
302 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
hostname: "cdn.simpleicons.org",
},
{
hostname: "img.clerk.com",
},
{
hostname: "images.clerk.dev",
},
],
},
}
export default nextConfig