Refactoring vers React: migration complète de l'application vanilla JS vers React avec architecture modulaire

This commit is contained in:
2025-11-28 19:38:26 +01:00
parent 28063d9ba8
commit 54ebd58e5a
23 changed files with 1670 additions and 30 deletions

11
vite.config.js Normal file
View File

@ -0,0 +1,11 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 3000,
open: true
}
})