Rocky_Mountain_Vending/.pnpm-store/v10/files/31/629f8ae1116c2b7428588b596849aaf84c42608d8f2fd823d63ce657086df6495b5ea15ccb0bce9b0df55d457c64a952013fa0d5276cd3ad622d20466fda2b
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

13 lines
300 B
Text

var currentNonce;
export var setNonce = function (nonce) {
currentNonce = nonce;
};
export var getNonce = function () {
if (currentNonce) {
return currentNonce;
}
if (typeof __webpack_nonce__ !== 'undefined') {
return __webpack_nonce__;
}
return undefined;
};