|
Hello, This is my tailwind.config.js: It's defined in the app's root folder, and I need to search all tsx files in feature packages, which by Turborepo's convention are located in Any ideas on what could be causing the slowlyness? My config: node 18.12.0 Is there a way I can make the JIT write logs somehow to help me debug the issue? EDIT: I want to add that if I don't search in ../../packages loading the CSS takes 200ms. |
Replies: 1 comment
|
Problem solved: my glob pattern was not excluding each package's to and now hot reloading takes < 300ms. |

Problem solved: my glob pattern was not excluding each package's
node_modules.Changed from
to
and now hot reloading takes < 300ms.