Rocky_Mountain_Vending/.pnpm-store/v10/files/13/b400e8af293a5a41cf66ed9a01de521508d7c06ea0300f4a0c0ff87937af3b749815e01ae894c243022533a9960da63d0c698a8394e25f3b7ae812b53497ae
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
1.4 KiB
Text

{"version":3,"sources":["../../src/server/get-route-from-entrypoint.ts"],"sourcesContent":["import getAppRouteFromEntrypoint from './get-app-route-from-entrypoint'\nimport matchBundle from './match-bundle'\n\n// matches pages/:page*.js\nconst SERVER_ROUTE_NAME_REGEX = /^pages[/\\\\](.*)$/\n\n// matches static/pages/:page*.js\nconst BROWSER_ROUTE_NAME_REGEX = /^static[/\\\\]pages[/\\\\](.*)$/\n\nexport default function getRouteFromEntrypoint(\n entryFile: string,\n app?: boolean\n): string | null {\n let pagePath = matchBundle(SERVER_ROUTE_NAME_REGEX, entryFile)\n\n if (pagePath) {\n return pagePath\n }\n\n if (app) {\n pagePath = getAppRouteFromEntrypoint(entryFile)\n if (pagePath) return pagePath\n }\n\n // Potentially the passed item is a browser bundle so we try to match that also\n return matchBundle(BROWSER_ROUTE_NAME_REGEX, entryFile)\n}\n"],"names":["getRouteFromEntrypoint","SERVER_ROUTE_NAME_REGEX","BROWSER_ROUTE_NAME_REGEX","entryFile","app","pagePath","matchBundle","getAppRouteFromEntrypoint"],"mappings":";;;;+BASA;;;eAAwBA;;;kFATc;oEACd;;;;;;AAExB,0BAA0B;AAC1B,MAAMC,0BAA0B;AAEhC,iCAAiC;AACjC,MAAMC,2BAA2B;AAElB,SAASF,uBACtBG,SAAiB,EACjBC,GAAa;IAEb,IAAIC,WAAWC,IAAAA,oBAAW,EAACL,yBAAyBE;IAEpD,IAAIE,UAAU;QACZ,OAAOA;IACT;IAEA,IAAID,KAAK;QACPC,WAAWE,IAAAA,kCAAyB,EAACJ;QACrC,IAAIE,UAAU,OAAOA;IACvB;IAEA,+EAA+E;IAC/E,OAAOC,IAAAA,oBAAW,EAACJ,0BAA0BC;AAC/C","ignoreList":[0]}