30 lines
1.0 KiB
JavaScript
30 lines
1.0 KiB
JavaScript
const { withSentryConfig } = require("@sentry/nextjs");
|
|
const withBundleAnalyzer = require("@next/bundle-analyzer")({
|
|
enabled: process.env.ANALYZE === "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 = withBundleAnalyzer(withSentryConfig({
|
|
images: {
|
|
domains: [
|
|
"api.sahkoinsinoorikilta.fi",
|
|
"static.sahkoinsinoorikilta.fi",
|
|
"api.dev.sahkoinsinoorikilta.fi",
|
|
],
|
|
},
|
|
sentry: {
|
|
hideSourceMaps: true, // Hide source maps, see: https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/#configure-source-maps
|
|
}
|
|
}, sentryWebpackPluginOptions));
|