How to create a project with App Module in Angular 17

--

GOOD TIP IS SHARED TIP: I recently had a problem at work because Angular has a new version and when starting a new project the famous .module.ts was not being created, after much searching, here is the resolution.

Starting with version 17 of Angular, we now have the Standalone configuration as the default in projects. So when you create a new project, you won’t have any modules in it if you don’t specify anything.

So to create an application based on modules, just use the command:

ng new [project-name] --no-standalone

Thanks!

--

--