summaryrefslogtreecommitdiffstats
path: root/apps/accessibility/webpack.prod.js
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-06-13 13:16:49 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-06-25 17:12:26 +0200
commit77817797707238746490e069e789abf4c2327bc3 (patch)
tree9f20d6921ec476ac9e88181bb590f83996777aee /apps/accessibility/webpack.prod.js
parentab266a7798b1a423f92fba74fa9003ccbe2554da (diff)
downloadnextcloud-server-77817797707238746490e069e789abf4c2327bc3.tar.gz
nextcloud-server-77817797707238746490e069e789abf4c2327bc3.zip
Accessibility ♿
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/accessibility/webpack.prod.js')
-rw-r--r--apps/accessibility/webpack.prod.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/accessibility/webpack.prod.js b/apps/accessibility/webpack.prod.js
new file mode 100644
index 00000000000..6ae024208ec
--- /dev/null
+++ b/apps/accessibility/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'
+});