5 lines
165 B
TypeScript
5 lines
165 B
TypeScript
/** @type {import('@sveltejs/kit').ParamMatcher} */
|
|
export function match(param: string) {
|
|
return !['tags', 'page'].some((keyword) => param.startsWith(keyword))
|
|
}
|