chore: add shadcn/ui

This commit is contained in:
trafficlunar 2024-12-03 20:00:50 +00:00
parent f1824a64ea
commit fe24818e18
9 changed files with 143 additions and 10 deletions

View file

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