You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 6, 2021. It is now read-only.
I ran the command: TAILWIND_MODE=watch postcss src/assets/tailwind.css -o src/assets/tailwind.output.css -w with a component class hover:underline, which outputs:
Hey! I think what you are seeing is just that when you edit HTML, we only add new classes, we don't delete old classes even if they aren't used anymore. This is a performance optimization that makes a big difference in incremental builds. Are you 100% sure the hover:underline class was removed? If so can you provide a GitHub repo that reproduces?
Yes it was removing it. The issue was that I've installed tailwindcss-jit at the root of the monorepo (yarn workspaces) while the other ones were in the app package. Moving it to the app dependencies fixed it.
Uh oh!
There was an error while loading. Please reload this page.
I ran the command:
TAILWIND_MODE=watch postcss src/assets/tailwind.css -o src/assets/tailwind.output.css -w
with a component classhover:underline
, which outputs:Then I modify the component class to
hover:underline focus:underline
which outputs:Then I revert back the component class to
hover:underline
but it still outputsRequirements
The text was updated successfully, but these errors were encountered: