Rocky_Mountain_Vending/.pnpm-store/v10/files/0e/fee1bceea066d32d1cfd9ced502908bf75be11a3b4296ed458c76369453260a3e60babc41dedac32eba93c78da66b6339d0dd6f41feb42f78ce496f4269f5f
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

27 lines
739 B
Text

import { defineIntegration } from '@sentry/core';
import { generateInstrumentOnce } from '../../otel/instrument.js';
import { SentryNodeFetchInstrumentation } from './SentryNodeFetchInstrumentation.js';
const INTEGRATION_NAME = 'NodeFetch';
const instrumentSentryNodeFetch = generateInstrumentOnce(
`${INTEGRATION_NAME}.sentry`,
SentryNodeFetchInstrumentation,
(options) => {
return options;
},
);
const _nativeNodeFetchIntegration = ((options = {}) => {
return {
name: 'NodeFetch',
setupOnce() {
instrumentSentryNodeFetch(options);
},
};
}) ;
const nativeNodeFetchIntegration = defineIntegration(_nativeNodeFetchIntegration);
export { nativeNodeFetchIntegration };
//# sourceMappingURL=index.js.map