How to convert an existing project to angular-cli?

I just tried ng2-adminit and it looks great; all functions are really good. How can I convert this project to angular-cli?

I tried with ng init, but it overwrites the existing code in the folder app. How can I transform this project into angular-cliwithout any impact?

+4
source share
1 answer

just create a project in angular-cli and then put all your code in the src / app folder of the application folder. import external dependencies if your project has.

+5
source

Source: https://habr.com/ru/post/1661166/


All Articles