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