d1c4924d66
* fix: remove redundant env settings from explorer * fix: format
18 lines
391 B
JavaScript
18 lines
391 B
JavaScript
const SentryPlugin = require('@sentry/webpack-plugin');
|
|
|
|
module.exports = (config, context) => {
|
|
const additionalPlugins = process.env.SENTRY_AUTH_TOKEN
|
|
? [
|
|
new SentryPlugin({
|
|
include: './dist/apps/explorer',
|
|
project: 'block-explorer',
|
|
}),
|
|
]
|
|
: [];
|
|
|
|
return {
|
|
...config,
|
|
plugins: [...additionalPlugins, ...config.plugins],
|
|
};
|
|
};
|