This commit is contained in:
2025-07-24 09:38:35 +02:00
parent d766cb72c8
commit 5539e67fde
109 changed files with 12778 additions and 1 deletions

17
vite.config.js Normal file
View File

@@ -0,0 +1,17 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
import path from 'path'
// https://vite.dev/config/
export default defineConfig({
plugins: [react(),tailwindcss()],
server: {
allowedHosts: ['919d3b60e744.ngrok-free.app'],
},
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
})