Skip to content

Instantly share code, notes, and snippets.

View sferdeveloper's full-sized avatar

SFer Developer sferdeveloper

View GitHub Profile
@sferdeveloper
sferdeveloper / Install Tailwind CSS with Vite and Yarn
Created March 10, 2023 18:10 — forked from mdasifmunshe/Install Tailwind CSS with Vite and Yarn
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 = {