Rocky_Mountain_Vending/.pnpm-store/v10/files/af/a2cd975d3a3940a5d9d295e40561730d1f7576b707f0425e5eedb8cc1fd41705850b0fc1c6fa93e2114d997cfc7e4bc300c59b193921e2c8729d8111469531
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

14 lines
276 B
Text

'use strict';
const fallbackWindow = {};
function locateWindow() {
if (typeof window !== "undefined") {
return window;
}
else if (typeof self !== "undefined") {
return self;
}
return fallbackWindow;
}
exports.locateWindow = locateWindow;