Rocky_Mountain_Vending/.pnpm-store/v10/files/9f/ecf67c0e88667d097d82167492ca2af7fde9498af19f6bd9fcb4137b6c34d45ebf7aa26ed058387b91f32681f8f87ff79320978cdc52996f38489c2bd7cf23
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
638 B
Text

import { defineIntegration, isBrowser, consoleSandbox } from '@sentry/core';
/**
* This is a shim for the Unleash 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 unleashIntegrationShim = defineIntegration((_options) => {
if (!isBrowser()) {
consoleSandbox(() => {
// eslint-disable-next-line no-console
console.warn('The unleashIntegration() can only be used in the browser.');
});
}
return {
name: 'Unleash',
};
});
export { unleashIntegrationShim };
//# sourceMappingURL=unleash.js.map