Javascript – Nextjs next build fails when I have svgr svg component
import * as Brands from '@/components/icons/brands' export async function Signup() { const provider = { name: 'Google', icon: Brands.Google, id: 'google' } return <provider.icon /> } This fails with a cryptic error message when I do a next build. import…