Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Renaming an Angular project safely?

Tags:

rename

angular

I need to rename a Angular 8 project from bottom to top: The folder name and every line of code using the original project name I gave.

I saw from former posts (and former angular versions) that there was no CLI commande for it. Is it still true ?

Any method/advice on how to do it ?

Bertrand

like image 852
Bertrand Verdun Avatar asked Feb 07 '26 20:02

Bertrand Verdun


1 Answers

Unfortunately there is no cli command to rename your Project.

If you want to rename it, you have to find all the places where your current Projectname is used and change the name.

Here is a link to the a similar question: How to rename an Angular project?

Good luck!

like image 95
DoppelManu Avatar answered Feb 09 '26 11:02

DoppelManu