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':
Hi @bucibucii
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'
: