Rocky_Mountain_Vending/.pnpm-store/v10/files/e7/bf99ab3da34ade8340774334fa742a205d50f79b7526668e08363bc1d6f0e58ca6c3cc57fc534c4dcee224bad16a6546f33710a137d1eb050a4d11349b4f8c
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
568 B
Text

var passiveSupported = false;
if (typeof window !== 'undefined') {
try {
var options = Object.defineProperty({}, 'passive', {
get: function () {
passiveSupported = true;
return true;
},
});
// @ts-ignore
window.addEventListener('test', options, options);
// @ts-ignore
window.removeEventListener('test', options, options);
}
catch (err) {
passiveSupported = false;
}
}
export var nonPassive = passiveSupported ? { passive: false } : false;