Trying to use Tailwind with Webpack and css-loader, modules turned on; doesn't seem to work.
All Tailwind classes become localised. The following doesn't work:
:global {
@tailwind preflight;
@tailwind utilities;
}
Currently using a workaround by including Tailwind inside of a separate file (and hence a separate rule), but it'd be nice if this could be addressed somehow.
Trying to use Tailwind with Webpack and
css-loader,modulesturned on; doesn't seem to work.All Tailwind classes become localised. The following doesn't work:
Currently using a workaround by including Tailwind inside of a separate file (and hence a separate rule), but it'd be nice if this could be addressed somehow.