Initial commit

This commit is contained in:
2025-06-08 11:18:08 +01:00
commit 76d3c574c1
31 changed files with 6182 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
host: true
},
build: {
sourcemap: true
}
});