Refactor code structure for improved readability and maintainability

This commit is contained in:
2026-05-06 08:42:48 +02:00
parent 591395a1bb
commit 55b4405c28
19 changed files with 2507 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
plugins: [
react(),
tailwindcss(),
],
})