mirror of
https://github.com/Steffo99/steffoweb.git
synced 2024-11-21 15:44:31 +00:00
Get rid of Sentry :(
This commit is contained in:
parent
05aef5c326
commit
b9e0760c50
5 changed files with 1 additions and 67 deletions
|
@ -1,21 +1,7 @@
|
|||
/** @type {import('next').NextConfig} */
|
||||
|
||||
const { withSentryConfig } = require('@sentry/nextjs');
|
||||
|
||||
const moduleExports = {
|
||||
module.exports = {
|
||||
images: {
|
||||
domains: [],
|
||||
},
|
||||
sentry: {
|
||||
hideSourceMaps: false,
|
||||
}
|
||||
}
|
||||
|
||||
const sentryWebpackPluginOptions = {
|
||||
url: "https://sentry.io/",
|
||||
org: "stefano-pigozzi",
|
||||
project: "steffoweb",
|
||||
silent: true,
|
||||
};
|
||||
|
||||
module.exports = withSentryConfig(moduleExports, sentryWebpackPluginOptions);
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
"@fortawesome/free-regular-svg-icons": "^6.2.0",
|
||||
"@fortawesome/free-solid-svg-icons": "^6.2.0",
|
||||
"@fortawesome/react-fontawesome": "^0.2.0",
|
||||
"@sentry/nextjs": "^7.31.0",
|
||||
"@steffo/bluelib": "^9.0.1",
|
||||
"classnames": "^2.3.2",
|
||||
"next": "^12.3.1",
|
||||
|
|
|
@ -1,17 +0,0 @@
|
|||
// This file configures the initialization of Sentry on the browser.
|
||||
// The config you add here will be used whenever a page is visited.
|
||||
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
|
||||
|
||||
import * as Sentry from '@sentry/nextjs';
|
||||
|
||||
const dsn = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN;
|
||||
|
||||
Sentry.init({
|
||||
dsn,
|
||||
// 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
|
||||
});
|
|
@ -1,17 +0,0 @@
|
|||
// This file configures the initialization of Sentry on the Edge Runtime.
|
||||
// The config you add here will be used whenever a page is visited.
|
||||
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
|
||||
|
||||
import * as Sentry from '@sentry/nextjs';
|
||||
|
||||
const dsn = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN;
|
||||
|
||||
Sentry.init({
|
||||
dsn,
|
||||
// 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
|
||||
});
|
|
@ -1,17 +0,0 @@
|
|||
// 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/
|
||||
|
||||
import * as Sentry from '@sentry/nextjs';
|
||||
|
||||
const dsn = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN;
|
||||
|
||||
Sentry.init({
|
||||
dsn,
|
||||
// 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
|
||||
});
|
Loading…
Reference in a new issue