feat(blog): add file-based blog with dynamic slugs, MDX content and layout shell
- Introduced blog routing using Next.js App Router - Implemented dynamic [slug] pages for blog posts - Added MDX-based content loading via lib/posts - Integrated shared TopBar layout with navigation - Established clear content, lib and component separation
This commit is contained in:
36
apps/public-web/node_modules/next/dist/esm/lib/build-custom-route.js
generated
vendored
Normal file
36
apps/public-web/node_modules/next/dist/esm/lib/build-custom-route.js
generated
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
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: '/'
|
||||
});
|
||||
// If this is an internal rewrite and it already provides a regex, use it
|
||||
// otherwise, normalize the source to a regex.
|
||||
let regex;
|
||||
if (!route.internal || type !== 'rewrite' || !('regex' in route) || typeof route.regex !== 'string') {
|
||||
let source = compiled.source;
|
||||
if (!route.internal) {
|
||||
source = modifyRouteRegex(source, type === 'redirect' ? restrictedRedirectPaths : undefined);
|
||||
}
|
||||
regex = normalizeRouteRegex(source);
|
||||
} else {
|
||||
regex = route.regex;
|
||||
}
|
||||
if (type !== 'redirect') {
|
||||
return {
|
||||
...route,
|
||||
regex
|
||||
};
|
||||
}
|
||||
return {
|
||||
...route,
|
||||
statusCode: getRedirectStatus(route),
|
||||
permanent: undefined,
|
||||
regex
|
||||
};
|
||||
}
|
||||
|
||||
//# sourceMappingURL=build-custom-route.js.map
|
||||
Reference in New Issue
Block a user