Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
29
node_modules/next/dist/esm/lib/build-custom-route.js
generated
vendored
Normal file
29
node_modules/next/dist/esm/lib/build-custom-route.js
generated
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
import { pathToRegexp } from 'next/dist/compiled/path-to-regexp';
|
||||
import { normalizeRouteRegex } from './load-custom-routes';
|
||||
import { getRedirectStatus, modifyRouteRegex } from './redirect-status';
|
||||
export function buildCustomRoute(type, route, restrictedRedirectPaths) {
|
||||
const compiled = pathToRegexp(route.source, [], {
|
||||
strict: true,
|
||||
sensitive: false,
|
||||
delimiter: '/'
|
||||
});
|
||||
let source = compiled.source;
|
||||
if (!route.internal) {
|
||||
source = modifyRouteRegex(source, type === 'redirect' ? restrictedRedirectPaths : undefined);
|
||||
}
|
||||
const regex = normalizeRouteRegex(source);
|
||||
if (type !== 'redirect') {
|
||||
return {
|
||||
...route,
|
||||
regex
|
||||
};
|
||||
}
|
||||
return {
|
||||
...route,
|
||||
statusCode: getRedirectStatus(route),
|
||||
permanent: undefined,
|
||||
regex
|
||||
};
|
||||
}
|
||||
|
||||
//# sourceMappingURL=build-custom-route.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue