Rocky_Mountain_Vending/.pnpm-store/v10/files/a5/77e13f4e3cc6d900ad82fb68a0aebe68e451e91d01a894243e3a731b16e9e05f4986af498cce1b6b53b0a950d116eb83d960ec72744e276e11bd2bb72cce69
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

21 lines
1,002 B
Text

import { envToBool } from '@sentry/node-core';
import { preloadOpenTelemetry } from './sdk/initOtel.js';
const debug = envToBool(process.env.SENTRY_DEBUG);
const integrationsStr = process.env.SENTRY_PRELOAD_INTEGRATIONS;
const integrations = integrationsStr ? integrationsStr.split(',').map(integration => integration.trim()) : undefined;
/**
* The @sentry/node/preload export can be used with the node --import and --require args to preload the OTEL
* instrumentation, without initializing the Sentry SDK.
*
* This is useful if you cannot initialize the SDK immediately, but still want to preload the instrumentation,
* e.g. if you have to load the DSN from somewhere else.
*
* You can configure this in two ways via environment variables:
* - `SENTRY_DEBUG` to enable debug logging
* - `SENTRY_PRELOAD_INTEGRATIONS` to preload specific integrations - e.g. `SENTRY_PRELOAD_INTEGRATIONS="Http,Express"`
*/
preloadOpenTelemetry({ debug, integrations });
//# sourceMappingURL=preload.js.map