Answers for "how to setup react app with tailwind css"

CSS
2

how to properly install tailwind css in react

@import "tailwindcss/base";

@import "tailwindcss/components";

@import "tailwindcss/utilities";
Posted by: Guest on December-24-2020
0

tailwind css in react

npm install @craco/craco
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
0

how to properly install tailwind css in react

touch postcss.config.js
Posted by: Guest on December-24-2020

Code answers related to "how to setup react app with tailwind css"

Browse Popular Code Answers by Language