complete ui overhaul

This commit is contained in:
Mustafa Soylu
2025-06-08 12:39:39 +02:00
parent 62cbeeb513
commit c3b2233cf5
94 changed files with 6024 additions and 14178 deletions

View File

@@ -0,0 +1,27 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { fileURLToPath } from 'url'
import { dirname, resolve } from 'path'
import tailwindcss from '@tailwindcss/vite'
const __filename = fileURLToPath(import.meta.url)
const __dirname = dirname(__filename)
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
resolve: {
alias: {
'@': resolve(__dirname, './src'),
},
},
server: {
proxy: {
'/api': {
target: 'http://localhost:7171',
changeOrigin: true,
},
},
},
})