Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Zeit now: how to remove alias?

Tags:

vercel

After following Zeit's tutorial on using their now CLI, I created a subdomain by calling a bare "now" command, and then created an alias for that subdomain by calling "now alias AUTOGENERATED_NAME MY_CUSTOM_NAME"

Later on, I tried to delete both of those, by calling "now alias rm MY_CUSTOM_NAME" and "now rm AUTOGENERATED_NAME".

The autogenerated url gives 404 now as expected, but the name I picked earlier for MY_CUSTOM_NAME is still online and serves the content that was uploaded earlier.

Zeit's online dashboard has "You removed alias MY_CUSTOM_NAME" in the history. However, it's still online...

How do I remove it/kill it?

Note that if I run "now ls" in the shell, it says "0 total deployments found under MY_ZEIT_USRENAME". And yet, that aliased url still shows that last deployment...

like image 661
Aqo Avatar asked Dec 01 '25 05:12

Aqo


1 Answers

now alias rm alias-to-be-deleted

READ: https://spectrum.chat/zeit/now/removing-alias~9856d8a6-f88d-4ddc-af5a-90bd7469bb5c?m=MTUzNTg4MDcyNzc5Mw==

like image 143
Koleen BP Avatar answered Dec 07 '25 04:12

Koleen BP