Initial Switch to V2. Completely Overhauled Backend, Frontend and General Structure.

This commit is contained in:
2026-04-17 14:37:36 +03:00
parent eb773c5531
commit 0a8a42d69b
447 changed files with 70696 additions and 492 deletions

View File

@@ -2,19 +2,24 @@ import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
import svgr from 'vite-plugin-svgr'
import path from 'path'
export default defineConfig({
plugins: [react(), tailwindcss(), svgr()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
server: {
host: '0.0.0.0',
port: 5173,
allowedHosts: ['console.bellsystems.net'],
port: 5174,
hmr: {
clientPort: 80,
clientPort: 8001,
},
watch: {
usePolling: true,
interval: 500,
interval: 100,
},
proxy: {
'/api': {