Benjamin

Results 19 comments of Benjamin

This would be awesome. Are there any emulated online XCode that we could use to make our own bundles untill this features is available ?

I have the same error, no updates yet ?

@7hourspg `[email protected]` is installed if you look at my package.json ...

I have the same problem. It seems that you have to enable wildcard domains on Vercel. But I cannot figure out how to do that on [project].vercel.pub domains. I cannot...

Hello, I just upgraded to @latest version. There is still the same error but not at the same line on the iconify.mjs file ;) `error - (sc_server)\node_modules\@iconify\react\dist\iconify.mjs (1791:28) @ eval...

**Edit:** I just labeled the component using the Icons with `"use client"` and there is no error anymore. The problem was the component was a server component and rendered on...

I have this version installed `"@iconify/react": "^4.0.1-beta.1"` The error message still appears when I do not add `"use client"` on top of component. I created a wrapper component to use...

I created a repository to show you the bug : https://github.com/bfourgeaud/iconify-next13-bug It has two pages /error and /success to show you how this error occurs

The missing keys seems to be the one that you can't use anymore in `Server Components`, but only in `Client Components` (marked with `"use client"` at the top). That's just...

When I console log React keys from IconWrapper.tsx it shows all the correct keys ```tsx "use client" import { Icon as BaseIcon, IconProps } from "@iconify/react"; import React from 'react';...