-
Add Sentry’s Next.js SDK to your next.js projects.
-
InfluxDB
InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
-
sentry-webpack-plugin
Discontinued Repo moved to https://github.com/getsentry/sentry-javascript-bundler-plugins. Please open any issues/PRs there.
/** @type {import('next').NextConfig} */ const { withSentryConfig } = require( '@sentry/nextjs' ); const nextConfig = { reactStrictMode: true } 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 = withSentryConfig( nextConfig, sentryWebpackPluginOptions );
-
Now check your sentry dashboard to know more about the errors and performance metrics.