Rocky_Mountain_Vending/.pnpm-store/v10/files/61/10ee5d6853881e566b776a412f7afb8468baa60efea1ff9c5fb51b08ff74b2b3fde1b6218437b4af7bf3b307c29d443a2292e98db1ceb96a5f2f403b284bb4
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

16 lines
611 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.isMissingLocaleDataError = isMissingLocaleDataError;
var tslib_1 = require("tslib");
var MissingLocaleDataError = /** @class */ (function (_super) {
tslib_1.__extends(MissingLocaleDataError, _super);
function MissingLocaleDataError() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.type = 'MISSING_LOCALE_DATA';
return _this;
}
return MissingLocaleDataError;
}(Error));
function isMissingLocaleDataError(e) {
return e.type === 'MISSING_LOCALE_DATA';
}