Rocky_Mountain_Vending/.pnpm-store/v10/files/da/004fc88ea6f46cccb4566cd6a9a4bfac8a3bc7d75cb6e3f831fdd63ccfb2b2406ee3cd5cf1523941b262f71bd7c20dc584926e6da3d6ffbb4c56a6aeab0998
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

15 lines
371 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var currentNonce;
exports.setNonce = function (nonce) {
currentNonce = nonce;
};
exports.getNonce = function () {
if (currentNonce) {
return currentNonce;
}
if (typeof __webpack_nonce__ !== 'undefined') {
return __webpack_nonce__;
}
return undefined;
};