add tab param matcher for URL routing

This commit is contained in:
Justin Edmund 2025-12-01 04:27:01 -08:00
parent a9dcbd18f8
commit 6ab74b43b1

5
src/params/tab.ts Normal file
View file

@ -0,0 +1,5 @@
import type { ParamMatcher } from '@sveltejs/kit'
export const match: ParamMatcher = (param) => {
return ['weapons', 'summons', 'characters'].includes(param)
}