This commit is contained in:
jrosh 2026-02-11 00:12:51 +01:00
commit a5d273c8fc
Signed by: jrosh
GPG key ID: CC50156D9BDF5EFB
37 changed files with 1627 additions and 0 deletions

7
vite.config.js Normal file
View file

@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
plugins: [react(), tailwindcss()],
})