1 import type { ParamMatcher } from '@sveltejs/kit'; 2 3 export const match: ParamMatcher = (param) => { 4 return ['mutuals', 'following', 'followers', 'network', 'stats'].includes(param); 5 };