testing with React, initial setup + header

This commit is contained in:
2025-12-06 20:07:09 +01:00
parent 131b0d3696
commit b0a52715d3
28 changed files with 298 additions and 166 deletions
+8
View File
@@ -0,0 +1,8 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss() ],
})