aboutsummaryrefslogtreecommitdiffstats
path: root/apps/updatenotification/webpack.prod.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/updatenotification/webpack.prod.js')
-rw-r--r--apps/updatenotification/webpack.prod.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/updatenotification/webpack.prod.js b/apps/updatenotification/webpack.prod.js
new file mode 100644
index 00000000000..f081567bd63
--- /dev/null
+++ b/apps/updatenotification/webpack.prod.js
@@ -0,0 +1,7 @@
+const merge = require('webpack-merge')
+const common = require('./webpack.common.js')
+
+module.exports = merge(common, {
+ mode: 'production',
+ devtool: '#source-map'
+})