hangerthem.com/next.config.mjs

14 lines
244 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
hostname: "lighthouse-report-svg.vercel.app",
protocol: "https",
},
],
dangerouslyAllowSVG: true,
},
}
export default nextConfig