Phase 5: scaffold Sysadmin Panel — all pages, layout, routing, docker-compose service

This commit is contained in:
2026-04-20 20:17:59 +03:00
parent 9812a25198
commit e0b0a04819
18 changed files with 1025 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 5175,
host: '0.0.0.0',
},
})