fuck. fixed.

This commit is contained in:
Jose
2025-09-14 21:43:24 +02:00
parent 26a264bc9f
commit fe5d21660a
70 changed files with 2982 additions and 669 deletions

17
vite.config.js Normal file
View File

@@ -0,0 +1,17 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import path from 'path'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
host: "localhost",
port: 3000,
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
})