Rocky_Mountain_Vending/.pnpm-store/v10/files/63/040e36dc4b51f666fbd56449331b8241fa4179a89f4f31f6d195c36c895faa746760acdb2990364fdd6faa9360d5b87a9060d82dac25b56382afd096365119
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

40 lines
1.1 KiB
Text

import { defineIntegration, isBrowser, consoleSandbox } from '@sentry/core';
/**
* This is a shim for the LaunchDarkly integration.
* We need this in order to not throw runtime errors when accidentally importing this on the server through a meta framework like Next.js.
*/
const launchDarklyIntegrationShim = defineIntegration((_options) => {
if (!isBrowser()) {
consoleSandbox(() => {
// eslint-disable-next-line no-console
console.warn('The launchDarklyIntegration() can only be used in the browser.');
});
}
return {
name: 'LaunchDarkly',
};
});
/**
* This is a shim for the LaunchDarkly flag used handler.
*/
function buildLaunchDarklyFlagUsedHandlerShim() {
if (!isBrowser()) {
consoleSandbox(() => {
// eslint-disable-next-line no-console
console.warn('The buildLaunchDarklyFlagUsedHandler() can only be used in the browser.');
});
}
return {
name: 'sentry-flag-auditor',
type: 'flag-used',
synchronous: true,
method: () => null,
};
}
export { buildLaunchDarklyFlagUsedHandlerShim, launchDarklyIntegrationShim };
//# sourceMappingURL=launchDarkly.js.map