This commit is contained in:
Pablo Martin 2025-05-20 23:54:48 +02:00
parent 10e21c62ed
commit b68623182c
11 changed files with 261 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'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
})