Files
lore/src/app/app.config.ts
T
naomi 5e3e5bf2cc
Node.js CI / CI (pull_request) Successful in 37s
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 59s
feat: test everything
2025-12-27 19:50:53 -08:00

20 lines
497 B
TypeScript

/**
* @copyright NHCarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
import {
type ApplicationConfig,
provideBrowserGlobalErrorListeners,
} from "@angular/core";
import { provideRouter } from "@angular/router";
// eslint-disable-next-line import/extensions -- This is not a file extension.
import { routes } from "./app.routes";
export const appConfig: ApplicationConfig = {
providers: [
provideBrowserGlobalErrorListeners(),
provideRouter(routes),
],
};