This website collects cookies to deliver better user experience
yarn create react-app react-tailwind-css-stater
yarn add -D tailwindcss postcss autoprefixer
tailwind.config.js
postcss.config.js
yarn tailwindcss init -p
module.exports = { content: ["./src/**/*.{js,jsx,ts,tsx}"], theme: { extend: {}, }, plugins: [], };
index.css
@tailwind base; @tailwind components; @tailwind utilities;
24
0