mirror of
https://github.com/baptisteArno/typebot.io.git
synced 2026-06-16 21:10:26 +08:00
15 lines
415 B
JavaScript
15 lines
415 B
JavaScript
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
const { withSentryConfig } = require('@sentry/nextjs')
|
|
|
|
const moduleExports = {
|
|
// Your existing module.exports
|
|
}
|
|
|
|
const sentryWebpackPluginOptions = {
|
|
silent: true,
|
|
// For all available options, see:
|
|
// https://github.com/getsentry/sentry-webpack-plugin#options.
|
|
}
|
|
|
|
module.exports = withSentryConfig(moduleExports, sentryWebpackPluginOptions)
|