Rocky_Mountain_Vending/.pnpm-store/v10/files/ca/39b8b61b6a7b5f61d5d3d8de84e9540fa7a195c07cbe9d70f6f33ff21a9f4d765ee61365e904bba34ccfd43ba662b442d2192a0d768a25feafa55cf0d3fbf9
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 Statsig 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 statsigIntegrationShim = defineIntegration((_options) => {
if (!isBrowser()) {
consoleSandbox(() => {
// eslint-disable-next-line no-console
console.warn('The statsigIntegration() can only be used in the browser.');
});
}
return {
name: 'Statsig',
};
});
export { statsigIntegrationShim };
//# sourceMappingURL=statsig.js.map