I'm trying to add Tailwind to my Meteor 3 app. If first tried to do it as described here:
https://tailwindcss.com/docs/installation/framework-guides/meteor
However, this resulted in frequent crashes of the standard-minifier. This seems to happen on hot-module reload. So I looked up what Meteor recommended for Tailwind and found this PostCSS package.
The official package, however, conflicts with Meteor 3:
While selecting package versions:
error: Conflict: Constraint minifier-css@1.3.1 is not satisfied by minifier-css 2.0.0.
Constraints on package "minifier-css":
* minifier-css@~2.0.0 <- top level
* minifier-css@1.3.1 <- juliancwirko:postcss 2.0.5
So I am asking myself, which version I should use - and if this minifier is needed for Tailwind support in the first place? What is the recommended setup in this case?
I'm trying to add Tailwind to my Meteor 3 app. If first tried to do it as described here:
https://tailwindcss.com/docs/installation/framework-guides/meteor
However, this resulted in frequent crashes of the standard-minifier. This seems to happen on hot-module reload. So I looked up what Meteor recommended for Tailwind and found this PostCSS package.
The official package, however, conflicts with Meteor 3:
So I am asking myself, which version I should use - and if this minifier is needed for Tailwind support in the first place? What is the recommended setup in this case?