Move project from bordanlage/ to repo root

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-26 14:31:08 +01:00
parent 946c0a5377
commit 77123a0df5
56 changed files with 0 additions and 0 deletions

15
dashboard/vite.config.js Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 8080,
proxy: {
'/signalk': { target: 'http://localhost:3000', ws: true },
'/snapcast-ws': { target: 'http://localhost:1780', ws: true },
'/mopidy': { target: 'http://localhost:6680', ws: true },
'/jellyfin': { target: 'http://localhost:8096', changeOrigin: true },
}
}
})