Rocky_Mountain_Vending/.pnpm-store/v10/files/6a/374280efd009c9be59af1e98899c079d9bb3c01db2e42257beb6d5d8a8bb35228ee192247cacd81b2086e649992085e0673aef34733f75936718608a8e3b24
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

19 lines
No EOL
523 B
Text

import { SERVER_DIRECTORY } from '../../../../shared/lib/constants';
import path from '../../../../shared/lib/isomorphic/path';
export class NodeManifestLoader {
constructor(distDir){
this.distDir = distDir;
}
static require(id) {
try {
return require(id);
} catch {
return null;
}
}
load(name) {
return NodeManifestLoader.require(path.join(this.distDir, SERVER_DIRECTORY, name));
}
}
//# sourceMappingURL=node-manifest-loader.js.map