Install Tailwind CSS to a vanila HTML. Included: postcss-nested, live-server, css-nano and purge-css
tailwind-init dir-name
cd dir-name
// start developing
npm run dev
yarn dev
// purge css
npm run build
yarn build
// purge css and minimize
npm run prod
yarn prod
- Error management
- New compiler JIT
- Remove 'build', because no need to purge
- Add app name in package.json
- add layer in tailwind.css
- Add preset template like in this video https://t.co/hrS84nJpQL?amp=1
- Add "future" in config, but commented by default
- Add new script 'prod'. Use 'build' to not include minimize and 'prod' to minimize.
- Enable "Experimental -> applyComplexClasses" in config by default.
- Add new directory 'font' under 'public'.