/** * @copyright nhcarrigan * @license Naomi's Public License * @author Naomi Carrigan */ import { bootstrapApplication } from "@angular/platform-browser"; import { AppComponent } from "./app/app.component"; import { appConfig } from "./app/app.config"; bootstrapApplication(AppComponent, appConfig). // eslint-disable-next-line unicorn/prefer-top-level-await -- This is the entry point of the application. catch((error: unknown) => { console.error(error); });