jynxio
jynxio
> same here. did you find any solution? not yet
## How to use custom components? ```js import NextImage from 'next/image'; import * as Avatar from '@radix-ui/react-avatar'; const App = () => ( Fallback ); ``` > If you are...
> The solution i am using currently is to not use the `Avatar.Image` at all and just use the `NextImage` and `Avatar.Fallback` . Just to give a barebones example: >...
To supplement, using CommonJS to import and access Jimp in Node.js does not cause any errors. The code is as follows: ```javascript const Jimp = require('jimp'); Jimp; // 👌 All...