Rocky_Mountain_Vending/.pnpm-store/v10/files/8d/0af42cbb1c714f88c4802be96728a3f2519e403623f8efeacf599bebc3bbf48a17700563c6bf6bc419354493b36ed2d33d27c0d8f3f33eed57d832ec6328f6
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

9 lines
No EOL
207 B
Text

export function denormalizeAppPagePath(page) {
// `/` is normalized to `/index`
if (page === '/index') {
return '/';
}
return page;
}
//# sourceMappingURL=denormalize-app-path.js.map