v1.1.0
Changelog
Features
- Added single config option to
Router({ base: '/some/path' })
for route prefixing - Verified wildcards work in the middle of path (e.g.
/foo/*/end
matches/foo/bar/baz/end
)
Fixes
- trailing wildcards (often used in middleware or for sub routers) now properly routes without requiring trailing slash (e.g.
/foo/*
should match/foo
)