Answers for "reactjs tailwindcss install"

6

tailwind in react

npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
//tailwind.config.js
content: [
    "./src/**/*.{js,jsx,ts,tsx}",
  ],
//index.css
@tailwind base;
@tailwind components;
@tailwind utilities;
Posted by: Guest on April-21-2022
6

commmand for installing tailwind to react

npm install tailwindcss
Posted by: Guest on September-01-2020
0

install tailwind react

Explained well in the source below
https://www.youtube.com/watch?v=kyjmpeBbtPg
Posted by: Guest on October-06-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language