sandbox-web-ide/frontend/next.config.mjs

19 lines
302 B
JavaScript
Raw Permalink Normal View History

2024-03-19 12:13:18 -04:00
/** @type {import('next').NextConfig} */
2024-04-11 05:14:10 -04:00
const nextConfig = {
images: {
remotePatterns: [
{
hostname: "cdn.simpleicons.org",
},
{
hostname: "img.clerk.com",
},
{
hostname: "images.clerk.dev",
},
2024-04-11 05:14:10 -04:00
],
},
}
2024-03-19 12:13:18 -04:00
2024-04-11 05:14:10 -04:00
export default nextConfig