Rocky_Mountain_Vending/.pnpm-store/v10/files/b8/cfafe9fe4ad4e3935a02ba68d17e150c4dcc1da1fd3cb6869abf233afe4120b5fe30dae8b55b0cda6f225f95bfdd580c2e5b3df569aff401076f59084193eb
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

31 lines
760 B
Text

import { getTraceData } from './traceData.js';
/**
* Returns a string of meta tags that represent the current trace data.
*
* You can use this to propagate a trace from your server-side rendered Html to the browser.
* This function returns up to two meta tags, `sentry-trace` and `baggage`, depending on the
* current trace data state.
*
* @example
* Usage example:
*
* ```js
* function renderHtml() {
* return `
* <head>
* ${getTraceMetaTags()}
* </head>
* `;
* }
* ```
*
*/
function getTraceMetaTags(traceData) {
return Object.entries(traceData || getTraceData())
.map(([key, value]) => `<meta name="${key}" content="${value}"/>`)
.join('\n');
}
export { getTraceMetaTags };
//# sourceMappingURL=meta.js.map