Rocky_Mountain_Vending/.pnpm-store/v10/files/6c/1af9ea22e1958c8e1ec5ef2da9f643a2aba09488b5e920d5ec1e524253f0ab17557b2a8616331d1a9a1de5afe28ed40d73b1bab17599299b83a30d81df87f8
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

7 lines
216 B
Text

import { setImmediate, clearImmediate } from "node:timers";
if (!globalThis.setImmediate) {
globalThis.setImmediate = setImmediate;
}
if (!globalThis.clearImmediate) {
globalThis.clearImmediate = clearImmediate;
}