Forked from mdasifmunshe/Install Tailwind CSS v3.4.17 and below with Vite and Yarn
Created
January 3, 2025 07:29
-
-
Save arcanrun/d25535ba72cb4295ea525f85a535c569 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
| /* 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