CatBreedGuesser/next.config.js
2023-07-11 23:57:25 +02:00

13 lines
225 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
hostname: 'cdn2.thecatapi.com',
}
]
}
}
module.exports = nextConfig