Skip to content

Commit

Permalink
ci: remove sentry from service worker configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
mchappell committed Oct 21, 2024
1 parent af96c59 commit 1d474e1
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,7 @@ var options = {
trezorTx: withMaybeSentry(
path.join(__dirname, 'src', 'ui', 'app', 'tabs', 'trezorTx.jsx')
),
background: withMaybeSentry(
path.join(__dirname, 'src', 'pages', 'Background', 'index.js')
),
background: path.join(__dirname, 'src', 'pages', 'Background', 'index.js'),
contentScript: withMaybeSentry(
path.join(__dirname, 'src', 'pages', 'Content', 'index.js')
),
Expand Down Expand Up @@ -315,8 +313,7 @@ var options = {
},
};

// This is causing sentry step to fail
/* if (!isDevelopment) {
if (!isDevelopment) {
options.optimization = {
minimize: true,
minimizer: [
Expand All @@ -325,6 +322,6 @@ var options = {
}),
],
};
}*/
}

module.exports = options;

0 comments on commit 1d474e1

Please sign in to comment.