mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
* chore: update templates * ci(templates): validate generated starters * fix * fix(templates): support pnpm 9 workspace config * ci(templates): test supported pnpm version
13 lines
405 B
TypeScript
13 lines
405 B
TypeScript
import { defineConfig } from "vite"
|
|
import { devtools } from "@tanstack/devtools-vite"
|
|
import { tanstackStart } from "@tanstack/react-start/plugin/vite"
|
|
import viteReact from "@vitejs/plugin-react"
|
|
import tailwindcss from "@tailwindcss/vite"
|
|
|
|
const config = defineConfig({
|
|
resolve: { tsconfigPaths: true },
|
|
plugins: [devtools(), tailwindcss(), tanstackStart(), viteReact()],
|
|
})
|
|
|
|
export default config
|