generated from nhcarrigan/template
feat: scaffold application
Some checks failed
Node.js CI / Lint and Test (pull_request) Failing after 18s
Some checks failed
Node.js CI / Lint and Test (pull_request) Failing after 18s
This commit is contained in:
15
client/src/main.ts
Normal file
15
client/src/main.ts
Normal file
@ -0,0 +1,15 @@
|
||||
/**
|
||||
* @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);
|
||||
});
|
Reference in New Issue
Block a user