Welcome to the JavaScript feedback portal. We’re happy you’re here! If you have feedback on how to improve the JavaScript, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Error: "Bootstrap call not found" appears when installing for Angular in a newer setup that's using main.ts instead of app.module.ts. Which is quite common in Angular 15/16+ setups.
A temporary work-around is to replace main.ts and app.module.ts with bare minimum.
src/main.ts
```
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.module';
platformBrowserDynamic().bootstrapModule(AppModule)
.catch(err => console.error(err));
```and
app/app.module.ts
```
import {NgModule} from '@angular/core';
@NgModule({
declarations: [
],
imports: [
],
providers: [
],
bootstrap: []
})
export class AppModule { }
```
Run "ng add @syncfusion/ej2-angular-grids" and again and manually move the generated changes back to the original main.ts file.