mhsf-dev/next.config.mjs
2024-08-08 17:58:36 -05:00

14 lines
218 B
JavaScript

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