Rocky_Mountain_Vending/.pnpm-store/v10/files/78/7984bb6c89b67da234f265dcc28365eb2e31055207852e5a29d882ccdd9630e3617a667438894e2bb6a4197ab9a918f4e7de56e1fc84d39594b3fa7f78b2a8
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

20 lines
No EOL
544 B
Text

// Polyfill crypto() in the Node.js environment
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