Answers for "tailwindcss.com react"

CSS
1

tailwind css in react

{
    // ...
    "scripts": {
-     "start": "react-scripts start",
-     "build": "react-scripts build",
-     "test": "react-scripts test",
+     "start": "craco start",
+     "build": "craco build",
+     "test": "craco test",
      "eject": "react-scripts eject"
    },
  }
Posted by: Guest on August-19-2021
0

tailwind css in react

npx tailwindcss-cli@latest init
Posted by: Guest on August-19-2021
0

tailwind css in react

/* ./src/index.css */
@tailwind base;
@tailwind components;
@tailwind utilities;
Posted by: Guest on August-28-2021
0

tailwind css in react

npx create-react-app my-project
cd my-project
Posted by: Guest on August-28-2021

Browse Popular Code Answers by Language