vercel open
The vercel open command opens your current project in the Vercel Dashboard. It automatically opens your default browser to the project's dashboard page, making it easy to access project settings, deployments, and other configuration options.
This command is available in Vercel CLI v48.10.0 and later. If you're using an older version, see Updating Vercel CLI.
This command requires your directory to be linked to a Vercel project. If you haven't linked your project yet, run vercel link first.
vercel openUsing the vercel open command to open the current
project in the Vercel Dashboard.
When you run vercel open:
- The CLI checks if your current directory is linked to a Vercel project
- It retrieves the project information, including the team slug and project name
- It constructs the dashboard URL for your project
- It opens the URL in your default browser
The command opens the project's main dashboard page at https://vercel.com/{team-slug}/{project-name}, where you can view deployments, configure settings, and manage your project.
From a linked project directory:
vercel openOpening the current project in the Vercel Dashboard.
This opens your browser to the project's dashboard page.
If you see an error that the command requires a linked project:
# Link your project first
vercel link
# Then open it
vercel openLinking your project before opening it in the dashboard.
Make sure you're in the correct directory where your project files are located.
The following global options can be passed when using the vercel open command:
For more information on global options and their usage, refer to the options section.
Was this helpful?