time to tell everybody that error telemetry is on

This commit is contained in:
Crazypersonalph
2023-12-06 14:59:35 +08:00
parent 01798fed97
commit df74d10381
11 changed files with 761 additions and 40 deletions
+6
View File
@@ -2,6 +2,7 @@ import path from 'path';
import MiniCssExtractPlugin from 'mini-css-extract-plugin';
import CopyWebpackPlugin from 'copy-webpack-plugin';
import ESLintPlugin from 'eslint-webpack-plugin';
import { sentryWebpackPlugin } from '@sentry/webpack-plugin';
export default {
@@ -77,5 +78,10 @@ export default {
{ from: 'interface/dist/index.html', to: 'interface/index.html' }
],
}),
sentryWebpackPlugin({
authToken: process.env.SENTRY_AUTH_TOKEN,
org: "personal-771",
project: "betterseqtaplus-main",
}),
],
};