fix: correction de l'URL WebSocket pour utiliser le proxy nginx /ws/ au lieu du port direct 8090
All checks were successful
Build and Push Docker image (ext) / docker (push) Successful in 58s

This commit is contained in:
4NK CI Bot 2025-09-19 18:06:59 +00:00
parent a302149ea8
commit 333101b3f4

View File

@ -12,7 +12,7 @@ export const U32_MAX = 4294967295;
const ORIGIN = typeof window !== 'undefined' ? window.location.origin : ''; const ORIGIN = typeof window !== 'undefined' ? window.location.origin : '';
const BASEURL = import.meta.env.VITE_BASEURL || ORIGIN; const BASEURL = import.meta.env.VITE_BASEURL || ORIGIN;
const BOOTSTRAPURL = [import.meta.env.VITE_BOOTSTRAPURL || `ws://${BASEURL}:8090/`]; const BOOTSTRAPURL = [import.meta.env.VITE_BOOTSTRAPURL || `ws://${BASEURL}/ws/`];
const STORAGEURL = import.meta.env.VITE_STORAGEURL || `${BASEURL}`; const STORAGEURL = import.meta.env.VITE_STORAGEURL || `${BASEURL}`;
const BLINDBITURL = import.meta.env.VITE_BLINDBITURL || `${BASEURL}`; const BLINDBITURL = import.meta.env.VITE_BLINDBITURL || `${BASEURL}`;
const DEFAULTAMOUNT = 1000n; const DEFAULTAMOUNT = 1000n;