0.0.8 • Published 3 years ago

vite-plugin-switch-hosts v0.0.8

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

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

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago