Rocky_Mountain_Vending/.pnpm-store/v10/files/e9/fb822c9ae965f06dcfec72ade0eeaa8b3e304f530feed55b655978f73c842748466a378c4bf025fe49625a4e9f2f48be150a4bf38dca64ecbee8ff366f89b7
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

29 lines
No EOL
920 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "parseLoaderTree", {
enumerable: true,
get: function() {
return parseLoaderTree;
}
});
const _segment = require("../../segment");
function parseLoaderTree(tree) {
const [segment, parallelRoutes, modules] = tree;
const { layout, template } = 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 === _segment.DEFAULT_SEGMENT_KEY ? modules.defaultPage : page;
const conventionPath = layout?.[1] || template?.[1] || page?.[1];
return {
page,
segment,
modules,
/* it can be either layout / template / page */ conventionPath,
parallelRoutes
};
}
//# sourceMappingURL=parse-loader-tree.js.map