mirror of
https://github.com/penpot/penpot.git
synced 2026-08-16 01:38:53 +00:00
12 lines
362 B
TypeScript
12 lines
362 B
TypeScript
import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
|
|
import { provideRouter, withHashLocation } from '@angular/router';
|
|
|
|
import { routes } from './app.routes';
|
|
|
|
export const appConfig: ApplicationConfig = {
|
|
providers: [
|
|
provideZoneChangeDetection({ eventCoalescing: true }),
|
|
provideRouter(routes, withHashLocation()),
|
|
],
|
|
};
|