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

13 lines
195 B
JavaScript
Raw 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",
},
],
},
}
2024-03-19 12:13:18 -04:00
2024-04-11 05:14:10 -04:00
export default nextConfig