sandbox-web-ide/frontend/next.config.mjs
2024-04-16 17:18:51 -04:00

13 lines
195 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
hostname: "cdn.simpleicons.org",
},
],
},
}
export default nextConfig