0.0.0 • Published 11 months ago

shadcn-fe-tw v0.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
11 months ago

shadcn-fe-tw

A tailwind plugin for shadcn/ui project that houses all the default tailwind configs for shadcn/ui

installation

 npm i shadcn-fe-tw
 yarn add shadcn-fe-tw
 pnpm add shadcn-fe-tw

and add it into your tailwind.config

export default {
  content: [
    // vite
    "./index.html",
    "./src/**/*.{js,ts,jsx,tsx}"
        // next
    "app/**/*.{ts,tsx}",
    "components/**/*.{ts,tsx}",
  ],

plugins: [
    require("tailwindcss-animate"),
    require("shadcn-fe-tw")
  ],
};