mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 14:03:06 +00:00
15 lines
351 B
TypeScript
15 lines
351 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', 'items/:id' , 'collections/:id', 'communities/:id', '**'
|
|
];
|