Rocky_Mountain_Vending/.pnpm-store/v10/files/1c/9cbd5739ee53c6e9a4fdc4b753b867c56fcea10f88ee3262bb6fe37f50e1d52804089f967c3c143d9fb6b78bcb60641a359137d9c379511bdd9f540429393e
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

1 line
No EOL
2 KiB
Text

{"version":3,"sources":["../../../src/build/static-paths/types.ts"],"sourcesContent":["import type { FallbackMode } from '../../lib/fallback'\nimport type { Params } from '../../server/request/params'\nimport type { DynamicParamTypes } from '../../shared/lib/app-router-types'\n\ntype StaticPrerenderedRoute = {\n readonly params: Params\n readonly pathname: string\n readonly encodedPathname: string\n readonly fallbackRouteParams: undefined\n readonly fallbackMode: FallbackMode | undefined\n readonly fallbackRootParams: undefined\n\n /**\n * When enabled, the route will be rendered with diagnostics enabled which\n * will error the build if the route that is generated is empty.\n */\n throwOnEmptyStaticShell: undefined\n}\n\nexport type FallbackRouteParam = {\n /**\n * The name of the param.\n */\n readonly paramName: string\n\n /**\n * The type of the param.\n */\n readonly paramType: DynamicParamTypes\n\n /**\n * Whether this is a parallel route param or descends from a parallel route\n * param.\n */\n readonly isParallelRouteParam: boolean\n}\n\ntype FallbackPrerenderedRoute = {\n readonly params: Params\n readonly pathname: string\n readonly encodedPathname: string\n\n /**\n * The fallback route params for the route. This includes both the parallel\n * route params and the non-parallel route params.\n */\n readonly fallbackRouteParams: readonly FallbackRouteParam[]\n readonly fallbackMode: FallbackMode | undefined\n readonly fallbackRootParams: readonly string[]\n\n /**\n * When enabled, the route will be rendered with diagnostics enabled which\n * will error the build if the route that is generated is empty.\n */\n throwOnEmptyStaticShell: boolean\n}\n\nexport type PrerenderedRoute = StaticPrerenderedRoute | FallbackPrerenderedRoute\n\nexport type StaticPathsResult = {\n fallbackMode: FallbackMode | undefined\n prerenderedRoutes: PrerenderedRoute[] | undefined\n}\n"],"names":[],"mappings":"AA2DA,WAGC","ignoreList":[0]}