removed glitchtip test error

This commit is contained in:
Bachir Soussi Chiadmi 2025-03-21 17:27:16 +01:00
parent ccbf8e9cfc
commit ed8a224885
6 changed files with 7 additions and 8 deletions

View File

@ -76,7 +76,6 @@ module.exports = merge(baseConfig, {
devtool: 'source-map', // Ensure source maps are generated
plugins: [
sentryWebpackPlugin({
// Sentry-specific options
org: "figures-libres",
project: "materio.com",
authToken: process.env.SENTRY_AUTH_TOKEN,
@ -84,7 +83,7 @@ module.exports = merge(baseConfig, {
release: process.env.RELEASE,
// urlPrefix: '~/', // Adjust based on your deployment setup
// include: './dist', // Adjust based on your output directory
// ignore: ['node_modules', 'webpack.config.js', 'build'],
ignore: ['node_modules', 'build'],
}),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('production')

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -83,9 +83,9 @@ Sentry.init({
// replaysOnErrorSampleRate: 1.0,
})
setTimeout(() => {
throw new Error('Sentry Test Error')
})
// setTimeout(() => {
// throw new Error('Sentry Test Error')
// })
VueSentry.init({
Vue,