vercel domains
Learn how to buy, sell, transfer, and manage your domains using the vercel domains CLI command.The vercel domains
command is used to manage domains under the current scope, providing functionality to list, inspect, add, remove, purchase, move, transfer-in, and verify domains.
You can manage domains with further options and greater control under a Vercel Project's Domains tab from the Vercel Dashboard.
vercel domains ls
vercel domains inspect [domain]
vercel domains add [domain] [project]
vercel domains rm [domain]
vercel domains buy [domain]
vercel domains move [domain] [scope-name]
vercel domains transfer-in [domain]
These are options that only apply to the vercel domains
command.
The --yes
option can be used to bypass the confirmation prompt when removing a domain.
vercel domains rm [domain] --yes
The --limit
option can be used to specify the maximum number of domains returned when using ls
. The default value to 20
and the maximum is 100
.
vercel domains ls --limit 100
The --force
option forces a domain on a project, removing it from an existing one.
vercel domains add my-domain.com my-project --force
The following global options can be passed when using the vercel domains
command:
For more information on global options and their usage, refer to the options section.
Was this helpful?