Vercel Domain Issue

I have already deleted my project, but the domain has not been deleted yet.

my project is gone but the domain still exists, and I want to use the old domain name, what should I do
image

@atompassakorn – I’m happy to help! It’s possible that the deployment’s domain alias is likely still associated with the (deleted) project’s deployment. Could you try using the Vercel CLI to remove the alias, then set it to the specific project you’d like to assign it to? Follow this specific order:

# List aliases assigned to deployments and copy down the url value
vercel alias ls

# Remove alias 
vercel alias rm <domain-alias>

# Assign alias to new deployment
vercel alias set <new-deployment-url> <domain-alias>

Please give this a try and update us on the result!

3 Likes

Thank you very much for your help, it’s working now!

2 Likes

@atompassakorn I’m glad to hear it’s working now!

2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.