Skip to content

Commit

Permalink
fix(angular): change default project type to Standalone
Browse files Browse the repository at this point in the history
  • Loading branch information
brandyscarney committed Mar 3, 2025
1 parent fbeac60 commit 1225ea2
Showing 1 changed file with 6 additions and 6 deletions.
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',
choices: () => [
{
name: 'NgModules',
short: 'NgModules',
value: 'ngModules',
},
{
name: 'Standalone',
short: 'Standalone',
value: 'standalone',
},
{
name: 'NgModules',
short: 'NgModules',
value: 'ngModules',
}
],
});
Expand Down

0 comments on commit 1225ea2

Please sign in to comment.