21 lines
437 B
JavaScript
21 lines
437 B
JavaScript
|
import { match } from 'path-to-regexp';
|
||
|
// import { resolveRoute } from 'vike/routing'; // eslint-disable-line import/extensions
|
||
|
|
||
|
const path = '/actors/:page?';
|
||
|
const urlMatch = match(path, { decode: decodeURIComponent });
|
||
|
|
||
|
export default (pageContext) => {
|
||
|
const matched = urlMatch(pageContext.urlPathname);
|
||
|
|
||
|
if (matched) {
|
||
|
return {
|
||
|
routeParams: {
|
||
|
page: matched.params.page || '1',
|
||
|
path,
|
||
|
},
|
||
|
};
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
};
|