generated from nhcarrigan/template
17 lines
418 B
TypeScript
17 lines
418 B
TypeScript
/**
|
|
* @copyright nhcarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
|
|
import { ApplicationConfig, provideZoneChangeDetection } from "@angular/core";
|
|
import { provideRouter } from "@angular/router";
|
|
import { routes } from "./app.routes";
|
|
|
|
export const appConfig: ApplicationConfig = {
|
|
providers: [
|
|
provideZoneChangeDetection({ eventCoalescing: true }),
|
|
provideRouter(routes),
|
|
],
|
|
};
|