Buy a domain name, connect it to your Vercel project, and configure DNS so your site lives at your own address instead of a Vercel subdomain. About 15 minutes.
Go to porkbun.com and search your business name.
.com — the gold standard
This is what everyone recognizes. If your .com is available, get it. It signals you are serious and is the most trusted extension worldwide. Typical price: $9 to $12 per year.
.co, .io, .business — solid alternatives
If your .com is taken, these are the next best options. Common in the startup world. Same price range as .com.
.site or .xyz — just for testing today
If you want to learn the process without committing to a domain yet, grab a .site or .xyz for $1 to $2 per year. Perfect for a practice run. You can always buy your real .com later and point it to the same site.
Pro Tip
yourdomain.com)www.yourdomain.com as well if promptedPorkbun Example
You need to add two DNS records: one that points your root domain to Vercel, and one that points the www version. Both use the same fixed values for every Vercel project.
First, get to the DNS editor on Porkbun:
@ or wwwThen add these two records:
Record 1 of 2 — A Record
In the “Add Record” form, set Type to A, Host to @ (the @ means your root domain), TTL to 600, then copy the value below into the Answer field:
Type
A
Host / Name
@
TTL
600
Value / Answer
Copy this and paste it into the Value field
76.76.21.21Record 2 of 2 — CNAME Record
Add a second record. Set Type to CNAME, Host to www, TTL to 600, then copy the value below:
Type
CNAME
Host / Name
www
TTL
600
Value / Answer
Copy this and paste it into the Value field
cname.vercel-dns.comClick Save after each record.
Heads Up
Note