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>2020-01-13 09:38:32 +0300
committerdartcafe <github@dartcafe.de>2020-01-13 09:38:32 +0300
commit3b4c8975acee83e3e6943fdb02c098563f3d8762 (patch)
treeb939ed2fac5d4ccf43bc74edba4d036d25906d92 /webpack.prod.js
parent4f5ae96b050f3a116cb69474daaf2bb8442e178b (diff)
create source maps for production
Diffstat (limited to 'webpack.prod.js')
-rw-r--r--webpack.prod.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/webpack.prod.js b/webpack.prod.js
index 184715d3..f5295256 100644
--- a/webpack.prod.js
+++ b/webpack.prod.js
@@ -2,5 +2,6 @@ const merge = require('webpack-merge')
const common = require('./webpack.common.js')
module.exports = merge(common, {
- mode: 'production'
+ mode: 'production',
+ devtool: 'source-map'
})