vite react, router, tailwind, shadcn

This commit is contained in:
JSC
2025-06-28 18:38:11 +02:00
commit e23e4bca2e
21 changed files with 1136 additions and 0 deletions

14
vite.config.ts Normal file
View File

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