my angular project was on version 13 and I migrated it step by step to angular 16. now I want to make it fully standalone and then migrate it to version 17.
Is there any utility that I can use or do I have to do it manually?
my angular project was on version 13 and I migrated it step by step to angular 16. now I want to make it fully standalone and then migrate it to version 17.
Is there any utility that I can use or do I have to do it manually?
You can migrate your angular project to standalone with this command:
As the docs say:
In my case, there was no error after the migration but in your case, they may occur and you need to fix them manually.
As the last step, you need to remove all the remaining modules manually from your project as they are useless now.