Skip to content

switch hosts by service worker for each origin in browser without modify system hosts file

Notifications You must be signed in to change notification settings

lisonge/vite-plugin-switch-hosts

Repository files navigation

vite-plugin-switch-hosts

switch hosts by service worker for each origin in browser without modify system hosts file

feature

  • switch hosts
  • different origin can use different hosts simultaneously
  • without modify system hosts file

limitation

  • current origin must support service worker. in other words, location.hostname is localhost or match 127.x.y.z, or location.protocol must be https:

  • target domain must use http or https, websocket is not supported

  • redirect url will follow in proxy dev server, not found a better solution yet

install

pnpm add -D vite-plugin-switch-hosts

config

SwitchHostsOption

export interface SwitchHostsOption {
  /**
   * host -> another_host
   */
  dns?: Record<string, string>;
}

example

see test/example/vite.config.ts

About

switch hosts by service worker for each origin in browser without modify system hosts file

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published