mkbsd/nextjs/next.config.mjs
2024-09-25 13:26:21 +05:30

15 lines
268 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "panels-cdn.imgix.net",
port: "",
pathname: "/**",
},
],
},
};
export default nextConfig;