mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
15 lines
312 B
TypeScript
15 lines
312 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', 'item/:id' , '**'
|
|
];
|