chore: import shadcn

This commit is contained in:
2025-10-25 15:22:27 +08:00
parent fbf4f5f98f
commit cd12b4297d
8 changed files with 467 additions and 39 deletions

View File

@@ -1,7 +1,14 @@
import path from "path"
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from "@tailwindcss/vite"
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
plugins: [react(), tailwindcss()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
})