This commit is contained in:
jrosh 2026-03-17 18:47:48 +01:00
commit 8c0e589376
Signed by: jrosh
GPG key ID: CC50156D9BDF5EFB
51 changed files with 4882 additions and 908 deletions

View file

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