feat(dashboard): edit log channels page

This commit is contained in:
sam 2024-10-19 16:52:27 +02:00
parent ec7aa9faba
commit 32ddb9fae2
Signed by: sam
GPG key ID: 5F3C3C1B3166639D
16 changed files with 471 additions and 95 deletions

View file

@ -4,6 +4,8 @@ import { defineConfig } from "vite";
export default defineConfig({
plugins: [sveltekit()],
server: {
port: 5173,
strictPort: true,
proxy: {
"/api": {
target: "http://localhost:5005",
@ -12,6 +14,7 @@ export default defineConfig({
},
hmr: {
host: "localhost",
port: 5173,
protocol: "ws",
},
},