12345678910111213141516171819202122232425262728293031323334353637383940 |
- "use strict";
- exports.id = 96270;
- exports.ids = [96270];
- exports.modules = {
- /***/ 96270:
- /***/ ((__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) => {
- /* harmony import */ var _sentry_nextjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(58097);
- /* harmony import */ var _sentry_nextjs__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_sentry_nextjs__WEBPACK_IMPORTED_MODULE_0__);
- var _sentryCollisionFreeGlobalObject = false ? 0 : typeof global != "undefined" ? global : typeof self != "undefined" ? self : {};
- _sentryCollisionFreeGlobalObject["__sentryRewritesTunnelPath__"] = undefined;
- _sentryCollisionFreeGlobalObject["SENTRY_RELEASE"] = {
- "id": "2uV0wUPjuliCZ-54V6Vdd"
- };
- _sentryCollisionFreeGlobalObject["__sentryBasePath"] = undefined;
- _sentryCollisionFreeGlobalObject["__rewriteFramesDistDir__"] = ".next";
- // This file configures the initialization of Sentry on the server.
- // The config you add here will be used whenever the server handles a request.
- // https://docs.sentry.io/platforms/javascript/guides/nextjs/
- const SENTRY_DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN;
- const SENTRY_ENABLED = process.env.NEXT_PUBLIC_SERVER_SENTRY_ENABLED === "true";
- const isDev = "production" === "development";
- _sentry_nextjs__WEBPACK_IMPORTED_MODULE_0__.init({
- enabled: SENTRY_ENABLED,
- dsn: SENTRY_ENABLED ? SENTRY_DSN : null,
- // Set tracesSampleRate to 1.0 to capture 100%
- // of transactions for performance monitoring.
- // We recommend adjusting this value in production
- tracesSampleRate: isDev ? 1 : 0,
- debug: isDev
- });
- /***/ })
- };
- ;
- //# sourceMappingURL=96270.js.map
|