Rocky_Mountain_Vending/.pnpm-store/v10/files/62/ebda5afa7061c996e77822ce24806a24415408293982f497f97c401a4ad0f8e9bb07319d62671cb98c4ee393d82df01edf32415994ee03883b6915df700f61
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

23 lines
710 B
Text

Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const core = require('@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 = core.defineIntegration((_options) => {
if (!core.isBrowser()) {
core.consoleSandbox(() => {
// eslint-disable-next-line no-console
console.warn('The statsigIntegration() can only be used in the browser.');
});
}
return {
name: 'Statsig',
};
});
exports.statsigIntegrationShim = statsigIntegrationShim;
//# sourceMappingURL=statsig.js.map