Viacheslav Zavoruev
Viacheslav Zavoruev
@chiddekel use Module Transpilation functionality of Next.js 13 https://nextjs.org/docs/advanced-features/compiler#module-transpilation. In `next.config.js` for example add ``` { ... transpilePackages: ["@d3fc/d3fc-label-layout"], ... } ```
I got similar case with passing component as an icon. Example: ```jsx import { IconPlay } from 'icon-library' import { BrandIcon } from 'ui-library' function BrandIcon({ icon: Icon }) {...
> Any reason you're not using the CLI? We have a custom integration. We extract keys by entrypoints by building dependency tree. So we are using Node API in our...