Enhance documentation with new features: added dark/light/system theme support, instructions page, and application catalog. Updated API and domain model for app management and automatic migrations on startup. Improved frontend structure with new routes and features for user instructions and app management.

This commit is contained in:
Leonid Pershin
2026-07-01 22:38:01 +03:00
parent d8930409fe
commit 1a8d33efa3
229 changed files with 9226 additions and 20 deletions
+20
View File
@@ -0,0 +1,20 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
// Бэкенд для dev-прокси (Api слушает http://localhost:8080). См. docs/frontend.md.
const apiTarget = process.env.VITE_API_TARGET ?? 'http://localhost:8080'
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
server: {
proxy: {
'/api': { target: apiTarget, changeOrigin: true },
'/hubs': { target: apiTarget, changeOrigin: true, ws: true },
},
},
build: {
outDir: 'dist',
},
})