1
Fork 0
mirror of https://github.com/Steffo99/steffoweb.git synced 2024-10-16 15:27:28 +00:00
steffoweb/next.config.js
2023-01-16 17:10:06 +01:00

21 lines
441 B
JavaScript

/** @type {import('next').NextConfig} */
const { withSentryConfig } = require('@sentry/nextjs');
const moduleExports = {
images: {
domains: [],
},
sentry: {
hideSourceMaps: false,
}
}
const sentryWebpackPluginOptions = {
url: "https://sentry.io/",
org: "stefano-pigozzi",
project: "steffoweb",
silent: true,
};
module.exports = withSentryConfig(moduleExports, sentryWebpackPluginOptions);