rainnny.club/next.config.mjs
2024-08-29 03:43:36 -04:00

14 lines
199 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "img.icons8.com",
},
],
},
};
export default nextConfig;