generated from nhcarrigan/template
Some checks failed
Node.js CI / Lint and Test (pull_request) Failing after 18s
16 lines
425 B
TypeScript
16 lines
425 B
TypeScript
/**
|
|
* @copyright nhcarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
|
|
import { bootstrapApplication } from "@angular/platform-browser";
|
|
import { appConfig } from "./app/app.config.js";
|
|
import { App } from "./app/app.js";
|
|
|
|
bootstrapApplication(App, appConfig).
|
|
// eslint-disable-next-line unicorn/prefer-top-level-await -- Angular wonky
|
|
catch((error: unknown) => {
|
|
console.error(error);
|
|
});
|