Answers for "install tailwind react"

5

commmand for installing tailwind to react

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

how to setup tailwind for reactjs

npm install -D tailwindcss@npm:@tailwindcss/postcss7-compat @tailwindcss/postcss7-compat postcss@^7 autoprefixer@^9
Posted by: Guest on April-17-2021
0

how to properly install tailwind css in react

"scripts": {
  "start": "npm run watch:css && react-scripts start",
  "build": "npm run watch:css && react-scripts build",
  "test": "react-scripts test",
  "eject": "react-scripts eject",
  "watch:css": "postcss src/assets/tailwind.css -o src/assets/main.css"
}
Posted by: Guest on December-24-2020
0

how to properly install tailwind css in react

touch postcss.config.js
Posted by: Guest on December-24-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

Browse Popular Code Answers by Language