mirror of
https://github.com/penpot/penpot.git
synced 2026-04-28 20:58:06 +00:00
8 lines
233 B
TypeScript
8 lines
233 B
TypeScript
import { ApplicationConfig } from '@angular/core';
|
|
import { provideRouter } from '@angular/router';
|
|
import { appRoutes } from './app.routes';
|
|
|
|
export const appConfig: ApplicationConfig = {
|
|
providers: [provideRouter(appRoutes)],
|
|
};
|