From 20f444415c54f913febee0806d957639396ec471 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Tue, 30 May 2023 23:16:59 -0400 Subject: [PATCH] Fix webpack sentry plugin update --- webpack.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index b3a9c1c..8496e52 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,6 +1,6 @@ const path = require('path'); const webpack = require('webpack'); -const SentryWebpackPlugin = require('@sentry/webpack-plugin'); +const { sentryWebpackPlugin } = require('@sentry/webpack-plugin'); const gitCommit = require('child_process') .execSync('git rev-parse --short HEAD') @@ -45,7 +45,7 @@ let plugins = [ if (process.env.SENTRY_AUTH_TOKEN) { plugins.push( - new SentryWebpackPlugin({ + sentryWebpackPlugin({ release: releaseName, include: './dist', urlPrefix: '~/',