Rocky_Mountain_Vending/.pnpm-store/v10/files/16/1ade4774a2594123bcb5903f948944d629f2c00b78395361400e9e1b3c828978c5b6c01f123df5462e2ebbd571b38442ccf73f59fcbc1978b05583f98b1d8b
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
475 B
Text

import { __extends } from "tslib";
var MissingLocaleDataError = /** @class */ (function (_super) {
__extends(MissingLocaleDataError, _super);
function MissingLocaleDataError() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.type = 'MISSING_LOCALE_DATA';
return _this;
}
return MissingLocaleDataError;
}(Error));
export function isMissingLocaleDataError(e) {
return e.type === 'MISSING_LOCALE_DATA';
}