Rocky_Mountain_Vending/.pnpm-store/v10/files/5b/7b9d34cfb439f50310a7285ed4bbbe8ecec0cb447b388a69c4560324d08a30ae140e810b4d629f35c227de32f3fff6b96ef3eaae4676669e2a0aae3cccd69d
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

31 lines
No EOL
1,006 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "generateBuildId", {
enumerable: true,
get: function() {
return generateBuildId;
}
});
async function generateBuildId(generate, fallback) {
let buildId = await generate();
// If there's no buildId defined we'll fall back
if (buildId === null) {
// We also create a new buildId if it contains the word `ad` to avoid false
// positives with ad blockers
while(!buildId || /ad/i.test(buildId)){
buildId = fallback();
}
}
if (typeof buildId !== 'string') {
throw Object.defineProperty(new Error('generateBuildId did not return a string. https://nextjs.org/docs/messages/generatebuildid-not-a-string'), "__NEXT_ERROR_CODE", {
value: "E455",
enumerable: false,
configurable: true
});
}
return buildId.trim();
}
//# sourceMappingURL=generate-build-id.js.map