forked from hazza/dspace-angular
15 lines
293 B
TypeScript
15 lines
293 B
TypeScript
/**
|
|
* Server-side routes. Only the listed routes support html5pushstate.
|
|
* Has to match client side routes.
|
|
*
|
|
* Index (/) route does not have to be listed here.
|
|
*
|
|
* @example
|
|
* export const routes: string[] = [
|
|
* 'home', 'about'
|
|
* ];
|
|
**/
|
|
export const routes: string[] = [
|
|
'home'
|
|
];
|