From bb5e4232bc71ea1d063293db2fecf35138824f4c Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Tue, 4 Feb 2020 16:15:58 -0500 Subject: [PATCH] disable sentry on electron --- webpack.electron.config.js | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/webpack.electron.config.js b/webpack.electron.config.js index 6170dd636..32527f885 100644 --- a/webpack.electron.config.js +++ b/webpack.electron.config.js @@ -7,12 +7,10 @@ const CopyWebpackPlugin = require('copy-webpack-plugin'); const { DefinePlugin, ProvidePlugin } = require('webpack'); const { getIfUtils, removeEmpty } = require('webpack-config-utils'); const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer'); -const SentryWebpackPlugin = require('@sentry/webpack-plugin'); const STATIC_ROOT = path.resolve(__dirname, 'static/'); const DIST_ROOT = path.resolve(__dirname, 'dist/'); const NODE_ENV = process.env.NODE_ENV || 'development'; -const hasSentryToken = process.env.SENTRY_AUTH_TOKEN !== undefined; const { ifProduction } = getIfUtils(NODE_ENV); @@ -94,16 +92,16 @@ let plugins = [ }), ]; -if (hasSentryToken) { - plugins.push( - new SentryWebpackPlugin({ - include: './dist', - ignoreFile: '.sentrycliignore', - ignore: ['node_modules', 'webpack.config.js', 'webworkers'], - configFile: 'sentry.properties', - }) - ); -} +// if (hasSentryToken) { +// plugins.push( +// new SentryWebpackPlugin({ +// include: './dist', +// ignoreFile: '.sentrycliignore', +// ignore: ['node_modules', 'webpack.config.js', 'webworkers'], +// configFile: 'sentry.properties', +// }) +// ); +// } const renderConfig = { target: 'electron-renderer',