compass/compass/next.config.js
Andy Chan (12beesinatrenchcoat) 259fa9546d Replace images.domain with images.remotePatterns
images.domains is deprecated as of Next 14.
2024-11-23 22:26:02 -05:00

13 lines
223 B
JavaScript

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