bravo68web-portfolio-nextjs/next.config.js

18 lines
527 B
JavaScript

const { withSentryConfig } = require('@sentry/nextjs');
const moduleExports = {
reactStrictMode: true,
compiler: {
// ssr and displayName are configured by default
styledComponents: true,
},
};
const sentryWebpackPluginOptions = {
silent: true, // Suppresses all logs
};
// Make sure adding Sentry options is the last code to run before exporting, to
// ensure that your source maps include changes from all other Webpack plugins
module.exports = withSentryConfig(moduleExports, sentryWebpackPluginOptions);