Updated codebase to follow consistent styling for spacing, braces, and indentation. Changes improve readability and align with standardized conventions throughout SCSS, TypeScript, and HTML files.
9 lines
302 B
TypeScript
9 lines
302 B
TypeScript
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)]
|
|
};
|