Overview

Using Tunnel in your development environment allows you to tackle feedback in context and collaborate with your team. You can also use Tunnel to share live previews of your app.

Setup

Install the Tunnel CLI

npm install @tunnel/cli

Add Tunnel to your dev script

Adding Tunnel to your dev script will add the Tunnel Toolbar to your localhost and automatically share your app when you run your dev command.

package.json
"scripts": {
  "dev": "tunnel 5173 -- vite dev --port PORT"
}