Rocky_Mountain_Vending/.pnpm-store/v10/files/21/aa7944a0aefbe9bb9106792fb4453449c00a3a37a3f33df2b35da9514057050305f1975896bee49adffca5f596e811176a8eced1c4364e5e67bd13b2163a13
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

19 lines
No EOL
924 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "MissingDefaultParallelRouteError", {
enumerable: true,
get: function() {
return MissingDefaultParallelRouteError;
}
});
const _usageerror = require("./usage-error");
class MissingDefaultParallelRouteError extends _usageerror.UsageError {
constructor(fullSegmentPath, slotName){
super(`Missing required default.js file for parallel route at ${fullSegmentPath}\n` + `The parallel route slot "${slotName}" is missing a default.js file. When using parallel routes, each slot must have a default.js file to serve as a fallback.\n\n` + `Create a default.js file at: ${fullSegmentPath}/default.js`, 'https://nextjs.org/docs/messages/slot-missing-default');
this.name = 'MissingDefaultParallelRouteError';
}
}
//# sourceMappingURL=missing-default-parallel-route-error.js.map