mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 22:18:39 +00:00
* chore: update templates * fix(cli): parse pnpm workspace packages * chore(changeset): add shadcn patch * chore(changeset): update description * ci(templates): validate bun and npx init * ci(templates): expand package manager validation * ci(templates): parallelize validation * ci(templates): allow yarn template lockfiles * fix(cli): allow yarn template installs in ci
9 lines
246 B
TypeScript
9 lines
246 B
TypeScript
import { reactRouter } from "@react-router/dev/vite"
|
|
import tailwindcss from "@tailwindcss/vite"
|
|
import { defineConfig } from "vite"
|
|
|
|
export default defineConfig({
|
|
resolve: { tsconfigPaths: true },
|
|
plugins: [tailwindcss(), reactRouter()],
|
|
})
|