feat: show app version in sidebar, remove version from about page

Displays the app version below the Elysium title in the sidebar.
Removes the separate client/API version cards from the About panel.
Also fixes the Vite dev proxy port to match the API server.
This commit is contained in:
2026-03-07 11:38:26 -08:00
committed by Naomi Carrigan
parent e01dc64919
commit cd12d4dbec
4 changed files with 9 additions and 12 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ export default defineConfig({
port: 5173,
proxy: {
"/api": {
target: "http://localhost:3001",
target: "http://localhost:3898",
rewrite: (path) => path.replace(/^\/api/, ""),
},
},