/**
 * 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[] = [
  'collections',
  'product',
  'materials',
  'designers',
	'videos',
	'basket',
	'search',
  '**/**' // TODO: Maybe fix?
];