Rocky_Mountain_Vending/.pnpm-store/v10/files/18/977dfb28d15f2dcaaac13abf1ac8723a5f5e1e53db18d76c13eabbe8bf74203faacb1456a22503f6d2bd632105f13ff46440ef45e48e2d6cb8de0826fd37d7
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

21 lines
No EOL
558 B
Text

// Polyfill crypto() in the Node.js environment
"use strict";
if (!global.crypto) {
let webcrypto;
Object.defineProperty(global, 'crypto', {
enumerable: false,
configurable: true,
get () {
if (!webcrypto) {
// @ts-expect-error -- TODO: Is this actually safe?
webcrypto = require('node:crypto').webcrypto;
}
return webcrypto;
},
set (value) {
webcrypto = value;
}
});
}
//# sourceMappingURL=node-polyfill-crypto.js.map