Skip to content

Instantly share code, notes, and snippets.

@mdasifmunshe
Created February 25, 2023 15:20
Show Gist options
  • Save mdasifmunshe/90142bfba181e3deb00642301e558c7a to your computer and use it in GitHub Desktop.
Save mdasifmunshe/90142bfba181e3deb00642301e558c7a to your computer and use it in GitHub Desktop.
Setting up Tailwind CSS in a Vite project with Yarn.
/* 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 */
@samuel-jarvis
Copy link

Thanks. It's nice to have everything in one place

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment