I was formerly using Angular version 6, now I have upgraded to 7. But when I try to create a new project in CLI using ng new [app-name]
it just starts without asking if I want to include routing in my project or the styling.
P.S: I have the latest version of Angular i.e 7.0.2.
Advertisement
Answer
ng new {Project-name}
command by default creates project without routing.
You need to set routing flag as true while creating project as below(by default this routing flag will be false),
ng new {Project-name} --routing=true