first commit

This commit is contained in:
2025-08-24 16:39:28 +02:00
commit 15f123070c
25 changed files with 3070 additions and 0 deletions

15
vite.config.ts Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
// aliases
resolve: {
alias: {
'@': '/src',
'@styles': '/src/styles',
'@components': '/src/components',
},
},
})