mirror of
https://github.com/5vl/CatBreedGuesser.git
synced 2025-05-23 21:56:56 +00:00
13 lines
225 B
JavaScript
13 lines
225 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
hostname: 'cdn2.thecatapi.com',
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
module.exports = nextConfig
|