create-auth-js-boiler
Version:
Create a new auth-js-boiler project
34 lines (32 loc) • 599 B
JavaScript
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
hostname: "res.cloudinary.com",
},
{
hostname: "lh3.googleusercontent.com",
},
{
hostname: "dummyimage.com",
},
{
hostname: "cdn.pixabay.com",
},
{
hostname: "images.unsplash.com",
},
{
hostname: "i.pinimg.com",
},
{
hostname: "www.gravatar.com",
},
{
hostname: "avatars.githubusercontent.com",
},
],
},
};
export default nextConfig;