[ ] Regression (a behavior that used to work and stopped working in a new release)
[ ] Bug report
[ ] Performance issue
[ ] Feature request
[x] Documentation issue or request
[ ] Support request
[ ] Other... Please describe:
Current behavior
The current documentation demonstrates package setup using bootstrapApplication(...).
Expected behavior
The documentation demonstrates package setup using the default platformBrowserDynamic().bootstrapModule(...) code generated in a new Angular 15+ project.
Minimal reproduction of the problem with instructions
Create a new angular app using ng cli 15+ to see a main.ts along the lines of:
if (environment.production) {
enableProdMode();
}
platformBrowserDynamic()
.bootstrapModule(AppModule)
.catch((err) => console.error(err));
What is the motivation / use case for changing the behavior?
Type signature errors prevent the use of svg-icon with bootstrapModule.
I'm submitting a...
Current behavior
The current documentation demonstrates package setup using
bootstrapApplication(...)
.Expected behavior
The documentation demonstrates package setup using the default
platformBrowserDynamic().bootstrapModule(...)
code generated in a new Angular 15+ project.Minimal reproduction of the problem with instructions
Create a new angular app using ng cli 15+ to see a main.ts along the lines of:
What is the motivation / use case for changing the behavior?
Type signature errors prevent the use of
svg-icon
withbootstrapModule
.Environment
Angular core: ^15.2.9