Rocky_Mountain_Vending/.pnpm-store/v10/files/43/15c4dd99a93461da974572c098d446d96b9497a11f98e6f390c9d529e86853cb0a21e7df6b85d27e2fb33c0e5125b677ce60be707c1c4fdfa7237a4d701cc5
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

16 lines
No EOL
560 B
Text

import { NodeModuleLoader } from './node-module-loader';
export class RouteModuleLoader {
static async load(id, loader = new 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