Ignore:
Timestamp:
12/12/24 17:06:06 (5 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
d565449
Message:

Pred finalna verzija

File:
1 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/vite/dist/client/client.mjs

    rd565449 r0c6b92a  
    514514  (browser) ${currentScriptHost} <--[HTTP]--> ${serverHost} (server)
    515515  (browser) ${socketHost} <--[WebSocket (failing)]--> ${directSocketHost} (server)
    516 Check out your Vite / network configuration and https://vitejs.dev/config/server-options.html#server-hmr .`
     516Check out your Vite / network configuration and https://vite.dev/config/server-options.html#server-hmr .`
    517517        );
    518518      });
     
    521521        () => {
    522522          console.info(
    523             "[vite] Direct websocket connection fallback. Check out https://vitejs.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."
    524524          );
    525525        },
     
    562562}
    563563function cleanUrl(pathname) {
    564   const url = new URL(pathname, "http://vitejs.dev");
     564  const url = new URL(pathname, "http://vite.dev");
    565565  url.searchParams.delete("direct");
    566566  return url.pathname + url.search;
     
    819819  }
    820820  const pathname = url.replace(/[?#].*$/, "");
    821   const { search, hash } = new URL(url, "http://vitejs.dev");
     821  const { search, hash } = new URL(url, "http://vite.dev");
    822822  return `${pathname}?${queryToInject}${search ? `&` + search.slice(1) : ""}${hash || ""}`;
    823823}
Note: See TracChangeset for help on using the changeset viewer.