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>
29 lines
864 B
Text
29 lines
864 B
Text
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
const core = require('@sentry/core');
|
|
const instrument = require('../../otel/instrument.js');
|
|
const SentryNodeFetchInstrumentation = require('./SentryNodeFetchInstrumentation.js');
|
|
|
|
const INTEGRATION_NAME = 'NodeFetch';
|
|
|
|
const instrumentSentryNodeFetch = instrument.generateInstrumentOnce(
|
|
`${INTEGRATION_NAME}.sentry`,
|
|
SentryNodeFetchInstrumentation.SentryNodeFetchInstrumentation,
|
|
(options) => {
|
|
return options;
|
|
},
|
|
);
|
|
|
|
const _nativeNodeFetchIntegration = ((options = {}) => {
|
|
return {
|
|
name: 'NodeFetch',
|
|
setupOnce() {
|
|
instrumentSentryNodeFetch(options);
|
|
},
|
|
};
|
|
}) ;
|
|
|
|
const nativeNodeFetchIntegration = core.defineIntegration(_nativeNodeFetchIntegration);
|
|
|
|
exports.nativeNodeFetchIntegration = nativeNodeFetchIntegration;
|
|
//# sourceMappingURL=index.js.map
|