The setup is already done in this project, but if you want to do it in another project you can follow the steps below.
They are very similar to the recommendation in the installation page of Tailwind.
meteor npm install tailwindcss@latest postcss@latest postcss-load-config@latest autoprefixer@latestSee package.json as example.
And remove the standard minifier.
meteor remove standard-minifier-css
meteor add juliancwirko:postcssSee packages as example.
See .postcssrc.js as example.
@tailwind base;
@tailwind components;
@tailwind utilities;See main.css as example.
See tailwind.config.js as example.
meteor npm installmeteorYou will see some warnings when running this example, but we are going to fix them soon