Add sentry webpack plugin
This commit is contained in:
parent
353d430a3a
commit
7ce0533749
|
|
@ -24,6 +24,12 @@ const webpackConfig = merge(baseWebpackConfig, {
|
||||||
minimizer: [new CssMinimizerPlugin()],
|
minimizer: [new CssMinimizerPlugin()],
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new SentryWebpackPlugin({
|
||||||
|
org: 'iterativ',
|
||||||
|
project: 'skillbox-vue',
|
||||||
|
include: config.build.assetsRoot,
|
||||||
|
authToken: process.env.SENTRY_AUTH_TOKEN,
|
||||||
|
}),
|
||||||
// http://vuejs.github.io/vue-loader/en/workflow/production.html
|
// http://vuejs.github.io/vue-loader/en/workflow/production.html
|
||||||
new webpack.DefinePlugin({
|
new webpack.DefinePlugin({
|
||||||
'process.env': env,
|
'process.env': env,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue