Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save arcanrun/d25535ba72cb4295ea525f85a535c569 to your computer and use it in GitHub Desktop.

Select an option

Save arcanrun/d25535ba72cb4295ea525f85a535c569 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 */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment