Last active
May 2, 2025 10:03
-
-
Save mdasifmunshe/90142bfba181e3deb00642301e558c7a to your computer and use it in GitHub Desktop.
Setting up Tailwind CSS in a Vite project with Yarn.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
As mentioned by @samuel-jarvis this gist no longer works with Tailwind CSS v4. | |
But it will still work for Tailwind CSS v3.4.17 and below | |
*/ | |
/* Terminal */ | |
yarn create vite my-project | |
cd my-project | |
yarn add -D tailwindcss postcss autoprefixer | |
yarn tailwindcss init -p | |
/* tailwind.config.cjs */ | |
/** @type {import('tailwindcss').Config} */ | |
module.exports = { | |
content: [ | |
"./index.html", | |
"./src/**/*.{js,ts,jsx,tsx}", | |
], | |
theme: { | |
extend: {}, | |
}, | |
plugins: [], | |
} | |
/* index.css */ | |
@tailwind base; | |
@tailwind components; | |
@tailwind utilities; | |
/* Terminal */ | |
yarn dev | |
/* Enjoy */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Dear @samuel-jarvis Thank you for bringing my attention to this matter. I have already updated this gist and opening a new gist for Tailwind CSS v4.