Just trying out flowbite in my vanilla NextJS project, and I ran into a problem with configuring tailwind to compile the dynamic classes from the library when I'm using yarn PnP. With PnP, there aren't any files in node_modules anymore, they're zips in yarn's PnP cache directory, so the direction to add "./node_modules/flowbite-react/**/*.js" is incorrect. I got over the issue running yarn config set nodeLinker node-modules so yarn would create links in a node_modules directory, but it took a bit to figure out.
My question: Is there a better way to use flowbite with yarn PnP other than calling yarn config set nodeLinker node-modules. If there isn't, may i suggest the documentation get updated calling this out?