lobe-chat

Форк
0
/
sentry.edge.config.ts 
17 строк · 758.0 Байт
1
// This file configures the initialization of Sentry for edge features (middleware, edge routes, and so on).
2
// The config you add here will be used whenever one of the edge features is loaded.
3
// Note that this config is unrelated to the Vercel Edge Runtime and is also required when running locally.
4
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
5
import * as Sentry from '@sentry/nextjs';
6

7
if (!!process.env.NEXT_PUBLIC_SENTRY_DSN) {
8
  Sentry.init({
9
    // Setting this option to true will print useful information to the console while you're setting up Sentry.
10
    debug: false,
11

12
    dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
13

14
    // Adjust this value in production, or use tracesSampler for greater control
15
    tracesSampleRate: 1,
16
  });
17
}
18

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.