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.
module.exports={plugins: {'postcss-nested': {},// I also tried putting this after tailwind'@tailwindcss/jit': {},autoprefixer: {},}}
src/style.css
.my-class {
@tailwind utilities;
}
Running the build-in postcss watcher.
After each template file change the class .my-class is added to the nest.
dist/style.css
.my-class .my-class .ml-3 {
margin-left:0.75rem
}
Tailwind config is default, just set purge to watch one file.
Without nesting @tailwind utilities it works fine.
Reloading the watcher fixes it, until the watcher picks up another change.