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
578 B
Text
17 lines
No EOL
578 B
Text
import { NEXT_RSC_UNION_QUERY } from '../client/components/app-router-headers';
|
|
const INTERNAL_QUERY_NAMES = [
|
|
NEXT_RSC_UNION_QUERY
|
|
];
|
|
export function stripInternalQueries(query) {
|
|
for (const name of INTERNAL_QUERY_NAMES){
|
|
delete query[name];
|
|
}
|
|
}
|
|
export function stripInternalSearchParams(url) {
|
|
const isStringUrl = typeof url === 'string';
|
|
const instance = isStringUrl ? new URL(url) : url;
|
|
instance.searchParams.delete(NEXT_RSC_UNION_QUERY);
|
|
return isStringUrl ? instance.toString() : instance;
|
|
}
|
|
|
|
//# sourceMappingURL=internal-utils.js.map |