Skip to content

Instantly share code, notes, and snippets.

@vitorjustin
Last active March 28, 2025 12:26
Show Gist options
  • Save vitorjustin/10f49defc11eca099514a2c4895da7d2 to your computer and use it in GitHub Desktop.
Save vitorjustin/10f49defc11eca099514a2c4895da7d2 to your computer and use it in GitHub Desktop.
Vite.js on WSL2: exposing port 5173 on LAN

Expose IP and Port to LAN

Open the cmd as administrator and run:

netsh interface portproxy add v4tov4 listenaddress=192.168.0.134 listenport=5173 connectaddress=172.29.30.127 connectport=5173
  • listenaddress = Your PC local IP Address got from ipconfig

  • listenport and connectport = Vite default port

  • connectaddress = The WSL hostname IP got from wsl hostname -I

Got this information from this comment.

Vite config

Inside package.json create a new script: "dev:local": "vite --host 0.0.0.0"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment