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>
26 lines
No EOL
796 B
Text
26 lines
No EOL
796 B
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "RouteModuleLoader", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return RouteModuleLoader;
|
|
}
|
|
});
|
|
const _nodemoduleloader = require("./node-module-loader");
|
|
class RouteModuleLoader {
|
|
static async load(id, loader = new _nodemoduleloader.NodeModuleLoader()) {
|
|
const module = await loader.load(id);
|
|
if ('routeModule' in module) {
|
|
return module.routeModule;
|
|
}
|
|
throw Object.defineProperty(new Error(`Module "${id}" does not export a routeModule.`), "__NEXT_ERROR_CODE", {
|
|
value: "E53",
|
|
enumerable: false,
|
|
configurable: true
|
|
});
|
|
}
|
|
}
|
|
|
|
//# sourceMappingURL=route-module-loader.js.map |