first task

This commit is contained in:
2025-01-01 14:21:33 +02:00
commit 46385a838d
26 changed files with 6950 additions and 0 deletions

10
vite.config.js Normal file
View File

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