import { importProvidersFrom } from '@angular/core'; import { MatDialogModule } from '@angular/material/dialog'; import { bootstrapApplication } from '@angular/platform-browser'; import { AppComponent } from './app/app.component'; bootstrapApplication(AppComponent, { providers: [importProvidersFrom(MatDialogModule)], }).catch((err) => console.error(err));