add event_bus_typed

This commit is contained in:
2026-09-23 19:05:09 +02:00
parent d1ce0655fb
commit b830abe3f4
3 changed files with 34 additions and 10 deletions
+1 -1
View File
@@ -2,6 +2,6 @@ import {defineStore} from 'pinia'
export const useAppStore = defineStore('app', {
state: () => ({
baseurl: 'http://localhost:8080',
baseurl: 'http://goesseau.eu:8080',
}),
});
+4 -2
View File
@@ -46,13 +46,15 @@ export default defineConfig({
},
server: {
port: 3000,
host: '0.0.0.0',
allowedHosts: ["goesseau.eu"],
proxy: {
'/api': {
target: 'http://localhost:8080',
target: 'http://goesseau.eu:8080',
changeOrigin: true,
},
'/ws': {
target: 'ws://localhost:8080',
target: 'ws://goesseau.eu:8080',
ws: true,
},
},