13 lines
536 B
TypeScript
13 lines
536 B
TypeScript
import { ApplicationConfig, provideZoneChangeDetection, isDevMode } from '@angular/core';
|
|
import { provideRouter } from '@angular/router';
|
|
|
|
import { routes } from './app.routes';
|
|
import { provideServiceWorker } from '@angular/service-worker';
|
|
|
|
export const appConfig: ApplicationConfig = {
|
|
providers: [provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes), provideServiceWorker('ngsw-worker.js', {
|
|
enabled: !isDevMode(),
|
|
registrationStrategy: 'registerWhenStable:30000'
|
|
})]
|
|
};
|