Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2018-12-31 23:12:46 +0300
committerdartcafe <github@dartcafe.de>2018-12-31 23:12:46 +0300
commit052ac374a6bf335ef98982dfe513b71d158910f4 (patch)
treead89c289b9bdddeda5b30534e3bc950f282c8f8f /webpack.prod.js
parentd1e6a2372ff0f57e14a779c2e083e40c35193bbe (diff)
Update environment
Diffstat (limited to 'webpack.prod.js')
-rw-r--r--webpack.prod.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/webpack.prod.js b/webpack.prod.js
new file mode 100644
index 00000000..f081567b
--- /dev/null
+++ b/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'
+})