Rocky_Mountain_Vending/.pnpm-store/v10/files/8c/825c621941d9f08262a7cf90f142a5e9512deb8d3eb6d02466e46b79560f67a8a2e29d4ed2527c34c3037a5a9f21d906f96b81f5b82ddb2b91fffd9657751f
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

10 lines
No EOL
320 B
Text

import getRouteFromAssetPath from '../shared/lib/router/utils/get-route-from-asset-path';
export default function matchBundle(regex, input) {
const result = regex.exec(input);
if (!result) {
return null;
}
return getRouteFromAssetPath(`/${result[1]}`);
}
//# sourceMappingURL=match-bundle.js.map