-
What version of Tailwind CSS are you using?^4 What build tool (or framework if it abstracts the build tool) are you using?Next.js 15.5.3 (but issues occur in other versions too) What version of Node.js are you using?v22.11.0 What browser are you using?Vivaldi (Chromium) What operating system are you using?WSL2 Ubuntu 24.04.3 on Windows 11 (Version 10.0.26100 Build 26100) Describe your issueHi, I had an issue in one of cloned projects where Tailwind would not generate styles for the application. Initially I thought it's a project configuration issue, but then I tried to initialize fresh Next.js project with the officialy documented command ( It happens for both I have also tried to cleanup the pnpm global store, but that didn't seem to help, or maybe I've used wrong commands, not sure: pnpm store prune
rm -rf <store path>
pnpm cache delete Any help would be greatly appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
You can try running the |
Beta Was this translation helpful? Give feedback.
It could be you have some
.gitignore
in a higher directory that ignores the project folder(s). Try runninggit init
in the root of the project to create a boundary from this.