mirror of
https://github.com/Steffo99/steffoweb.git
synced 2024-11-21 23:54:30 +00:00
21 lines
441 B
JavaScript
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);
|