mirror of
https://github.com/penpot/penpot.git
synced 2026-05-08 17:48:39 +00:00
7 lines
222 B
TypeScript
7 lines
222 B
TypeScript
import { ApplicationConfig } from '@angular/core';
|
|
import { provideRouter, withHashLocation } from '@angular/router';
|
|
|
|
export const appConfig: ApplicationConfig = {
|
|
providers: [provideRouter([], withHashLocation())],
|
|
};
|