Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions packages/@ionic/cli/src/commands/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -512,17 +512,17 @@ Use the ${input(
const angularMode = await this.env.prompt({
type: 'list',
name: 'standalone',
message: 'Would you like to build your app with NgModules or Standalone Components? \n Standalone components are a new way to build with Angular that simplifies the way you build your app. \n To learn more, visit the Angular docs:\n https://angular.io/guide/standalone-components\n\n',
message: 'Would you like to build your app with Standalone Components or NgModules? \n Standalone components are the default way to build with Angular that simplifies the way you build your app. \n To learn more, visit the Angular docs:\n https://angular.dev/guide/components\n\n',
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I updated this guide because the old one is from v17, but if we would prefer linking to a NgModules guide there is one here: https://angular.dev/guide/ngmodules/overview#

choices: () => [
{
name: 'NgModules',
short: 'NgModules',
value: 'ngModules',
},
{
name: 'Standalone',
short: 'Standalone',
value: 'standalone',
},
{
name: 'NgModules',
short: 'NgModules',
value: 'ngModules',
}
],
});
Expand Down