Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
19
node_modules/next/dist/esm/server/app-render/parse-loader-tree.js
generated
vendored
Normal file
19
node_modules/next/dist/esm/server/app-render/parse-loader-tree.js
generated
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
import { DEFAULT_SEGMENT_KEY } from '../../shared/lib/segment';
|
||||
export function parseLoaderTree(tree) {
|
||||
const [segment, parallelRoutes, modules] = tree;
|
||||
const { layout } = modules;
|
||||
let { page } = modules;
|
||||
// a __DEFAULT__ segment means that this route didn't match any of the
|
||||
// segments in the route, so we should use the default page
|
||||
page = segment === DEFAULT_SEGMENT_KEY ? modules.defaultPage : page;
|
||||
const layoutOrPagePath = (layout == null ? void 0 : layout[1]) || (page == null ? void 0 : page[1]);
|
||||
return {
|
||||
page,
|
||||
segment,
|
||||
modules,
|
||||
layoutOrPagePath,
|
||||
parallelRoutes
|
||||
};
|
||||
}
|
||||
|
||||
//# sourceMappingURL=parse-loader-tree.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue