working through part 1 a

This commit is contained in:
counterweight 2025-05-18 19:02:16 +02:00
parent deb765ff5d
commit b11136fc9d
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
12 changed files with 2935 additions and 0 deletions

View file

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