10 lines
272 B
TypeScript
10 lines
272 B
TypeScript
|
|
import { ApplicationConfig } from '@angular/core';
|
||
|
|
import { provideRouter, withHashLocation } from '@angular/router';
|
||
|
|
import { routes } from './app.routes';
|
||
|
|
|
||
|
|
export const appConfig: ApplicationConfig = {
|
||
|
|
providers: [
|
||
|
|
provideRouter(routes, withHashLocation())
|
||
|
|
]
|
||
|
|
};
|