Rocky_Mountain_Vending/.pnpm-store/v10/files/5a/5f8998f2bb0cfd888dbc67613970c86289a5b9b604695ecfdfa8adb0f91a56845113b4431e1e28624b5986db4815cd9986f84fe64054fa12bc482ef552a2b8
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

25 lines
No EOL
890 B
Text

// This file should be imported before any others. It sets up the environment
// for later imports to work properly.
// expose AsyncLocalStorage on global for react usage if it isn't already provided by the environment
"use strict";
if (typeof globalThis.AsyncLocalStorage !== 'function') {
const { AsyncLocalStorage } = require('async_hooks');
globalThis.AsyncLocalStorage = AsyncLocalStorage;
}
if (typeof globalThis.WebSocket !== 'function') {
Object.defineProperty(globalThis, 'WebSocket', {
configurable: true,
get () {
return require('next/dist/compiled/ws').WebSocket;
},
set (value) {
Object.defineProperty(globalThis, 'WebSocket', {
configurable: true,
writable: true,
value
});
}
});
}
//# sourceMappingURL=node-environment-baseline.js.map