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 has been archived by the owner on Feb 27, 2023. It is now read-only.
I don't know whats your problem realy is, so I can only guess whats going on. The default tailwind.config.js purges all files stored in die /src/ folder and only *.js files. So if you are using another extension like jsx the nothing will be purged an you have the whole Tailwind CSS (and its about 3MB).
Since Tailwind v2 they also use the JIT module. I'm also working with JIT and its works great. If you want to use it, you habe only to enable it in the tailwind.config.js with mode: 'jit':
module.exports={mode: 'jit'purge: ['./src/**/*.js'],darkMode: false,// or 'media' or 'class'theme: {extend: {},},variants: {extend: {},},plugins: [],}
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
No description provided.
The text was updated successfully, but these errors were encountered: