Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/vite/dist/client/client.mjs
rd565449 r0c6b92a 514 514 (browser) ${currentScriptHost} <--[HTTP]--> ${serverHost} (server) 515 515 (browser) ${socketHost} <--[WebSocket (failing)]--> ${directSocketHost} (server) 516 Check out your Vite / network configuration and https://vite js.dev/config/server-options.html#server-hmr .`516 Check out your Vite / network configuration and https://vite.dev/config/server-options.html#server-hmr .` 517 517 ); 518 518 }); … … 521 521 () => { 522 522 console.info( 523 "[vite] Direct websocket connection fallback. Check out https://vite js.dev/config/server-options.html#server-hmr to remove the previous connection error."523 "[vite] Direct websocket connection fallback. Check out https://vite.dev/config/server-options.html#server-hmr to remove the previous connection error." 524 524 ); 525 525 }, … … 562 562 } 563 563 function cleanUrl(pathname) { 564 const url = new URL(pathname, "http://vite js.dev");564 const url = new URL(pathname, "http://vite.dev"); 565 565 url.searchParams.delete("direct"); 566 566 return url.pathname + url.search; … … 819 819 } 820 820 const pathname = url.replace(/[?#].*$/, ""); 821 const { search, hash } = new URL(url, "http://vite js.dev");821 const { search, hash } = new URL(url, "http://vite.dev"); 822 822 return `${pathname}?${queryToInject}${search ? `&` + search.slice(1) : ""}${hash || ""}`; 823 823 }
Note:
See TracChangeset
for help on using the changeset viewer.