2024-05-31 16:22:34 -05:00
|
|
|
/** @type {import('next').NextConfig} */
|
2024-07-23 18:49:21 -05:00
|
|
|
const nextConfig = {
|
|
|
|
|
images: {
|
|
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
|
|
|
|
protocol: "https",
|
|
|
|
|
hostname: "img.clerk.com",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
};
|
2024-05-31 16:22:34 -05:00
|
|
|
|
|
|
|
|
export default nextConfig;
|