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>
17 lines
No EOL
484 B
Text
17 lines
No EOL
484 B
Text
// Convert router.asPath to a URLSearchParams object
|
|
// example: /dynamic/[slug]?foo=bar -> { foo: 'bar' }
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "asPathToSearchParams", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return asPathToSearchParams;
|
|
}
|
|
});
|
|
function asPathToSearchParams(asPath) {
|
|
return new URL(asPath, 'http://n').searchParams;
|
|
}
|
|
|
|
//# sourceMappingURL=as-path-to-search-params.js.map |