install Sentry with wizard

This commit is contained in:
Aarni Halinen
2021-11-11 19:46:41 +02:00
parent 56c71e8bab
commit f87d8b9939
10 changed files with 1334 additions and 50 deletions
+15 -2
View File
@@ -1,8 +1,21 @@
const { withSentryConfig } = require("@sentry/nextjs");
const withBundleAnalyzer = require("@next/bundle-analyzer")({
enabled: process.env.ANALYZE === "true",
});
module.exports = withBundleAnalyzer({
const sentryWebpackPluginOptions = {
// Additional config options for the Sentry Webpack plugin. Keep in mind that
// the following options are set automatically, and overriding them is not
// recommended:
// release, url, org, project, authToken, configFile, stripPrefix,
// urlPrefix, include, ignore
silent: true, // Suppresses all logs
// For all available options, see:
// https://github.com/getsentry/sentry-webpack-plugin#options.
};
module.exports = withBundleAnalyzer(withSentryConfig({
target: "server",
images: {
domains: [
@@ -11,4 +24,4 @@ module.exports = withBundleAnalyzer({
"api.dev.sahkoinsinoorikilta.fi",
],
},
});
}, sentryWebpackPluginOptions));