forked from github/plane
1e152c666c
* chore: moved app & space from apps to root * chore: modified workspace configuration * chore: modified dockerfiles for space and web * chore: modified icons for space * feat: updated files for new svg icons supported by next-images * chore: added /spaces base path for next * chore: added compose config for space * chore: updated husky configuration * chore: updated workflows for new configuration * chore: changed app name to web * fix: resolved build errors with web * chore: reset file tracing root for both projects * chore: added nginx config for deploy * fix: eslint and tsconfig settings for space app * husky setup fixes based on new dir * eslint fixes * prettier formatting --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
19 lines
763 B
JavaScript
19 lines
763 B
JavaScript
// This file configures the initialization of Sentry on the server.
|
|
// The config you add here will be used whenever middleware or an Edge route handles a request.
|
|
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
|
|
|
|
import * as Sentry from "@sentry/nextjs";
|
|
|
|
const SENTRY_DSN = process.env.NEXT_PUBLIC_SENTRY_DSN;
|
|
|
|
Sentry.init({
|
|
dsn: SENTRY_DSN,
|
|
environment: process.env.NEXT_PUBLIC_SENTRY_ENVIRONMENT || "development",
|
|
// Adjust this value in production, or use tracesSampler for greater control
|
|
tracesSampleRate: 1.0,
|
|
// ...
|
|
// Note: if you want to override the automatic release value, do not set a
|
|
// `release` value here - use the environment variable `SENTRY_RELEASE`, so
|
|
// that it will also get attached to your source maps
|
|
});
|