Rocky_Mountain_Vending/.pnpm-store/v10/files/27/74c15c370982d2d876bf8d0d15122844168718181cecf54ff5b709c67ffbeb93d2dee15434a4ab2ec5b68884459046a9168df250b74ae2d0edecfec529890d
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

45 lines
No EOL
1.3 KiB
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
0 && (module.exports = {
isAppPageRouteModule: null,
isAppRouteRouteModule: null,
isPagesAPIRouteModule: null,
isPagesRouteModule: null
});
function _export(target, all) {
for(var name in all)Object.defineProperty(target, name, {
enumerable: true,
get: all[name]
});
}
_export(exports, {
isAppPageRouteModule: function() {
return isAppPageRouteModule;
},
isAppRouteRouteModule: function() {
return isAppRouteRouteModule;
},
isPagesAPIRouteModule: function() {
return isPagesAPIRouteModule;
},
isPagesRouteModule: function() {
return isPagesRouteModule;
}
});
const _routekind = require("../route-kind");
function isAppRouteRouteModule(routeModule) {
return routeModule.definition.kind === _routekind.RouteKind.APP_ROUTE;
}
function isAppPageRouteModule(routeModule) {
return routeModule.definition.kind === _routekind.RouteKind.APP_PAGE;
}
function isPagesRouteModule(routeModule) {
return routeModule.definition.kind === _routekind.RouteKind.PAGES;
}
function isPagesAPIRouteModule(routeModule) {
return routeModule.definition.kind === _routekind.RouteKind.PAGES_API;
}
//# sourceMappingURL=checks.js.map