mhsf-dev/next.config.mjs
2024-07-23 18:49:21 -05:00

15 lines
256 B
JavaScript

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