Answers for "tailwind css react steps"

3

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

install tailwind css in react

npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init
Posted by: Guest on January-30-2022
0

how to properly install tailwind css in react

const tailwindcss = require('tailwindcss');
module.exports = {
    plugins: [
        tailwindcss('./tailwind.js'),
        require('autoprefixer')
    ],
};
Posted by: Guest on December-24-2020
0

react tailwind css components npm

// with npm
npm install react-tailwindcss-components
 
// with yarn
yarn add react-tailwindcss-components
Posted by: Guest on March-30-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language