31
loading...
This website collects cookies to deliver better user experience
yarn create vite my-react-app --template react
yarn create vite my-react-app --template react-ts
cd my-react-app
yarn
yarn dev
yarn add tailwindcss -D
yarn add postcss
yarn add autoprefixer
yarn tailwind init
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
}
}
@tailwind base;
@tailwind components;
@tailwind utilities;
tailwind.css
yarn dev
para evitar erros desagradáveis.