Replace images.domain with images.remotePatterns

images.domains is deprecated as of Next 14.
This commit is contained in:
Andy Chan (12beesinatrenchcoat) 2024-11-23 22:26:02 -05:00
parent 073517dea2
commit 259fa9546d

View File

@ -1,7 +1,11 @@
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
const nextConfig = { const nextConfig = {
images: { images: {
domains: ["notioly.com"], remotePatterns: [
{
hostname: "notioly.com",
},
],
}, },
}; };