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>
9 lines
No EOL
664 B
Text
9 lines
No EOL
664 B
Text
import { UsageError } from './usage-error';
|
|
export class MissingDefaultParallelRouteError extends 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 |