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

22 lines
441 B
JavaScript
Raw Normal View History

2023-01-16 16:08:30 +00:00
/** @type {import('next').NextConfig} */
const { withSentryConfig } = require('@sentry/nextjs');
const moduleExports = {
2022-10-16 23:58:17 +00:00
images: {
domains: [],
},
2023-01-16 16:08:30 +00:00
sentry: {
hideSourceMaps: false,
}
}
const sentryWebpackPluginOptions = {
url: "https://sentry.io/",
org: "stefano-pigozzi",
project: "steffoweb",
silent: true,
};
module.exports = withSentryConfig(moduleExports, sentryWebpackPluginOptions);