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>2019-02-12 18:59:53 +0300
committerdartcafe <github@dartcafe.de>2019-02-12 18:59:53 +0300
commitbf56bbecfc3f53333e8e8f7ee18c83d66b63eaf3 (patch)
tree9277c0452467cb0614ed25ac1ee8b1f1dcdab055 /webpack.prod.js
parentbf9ac2e3445f1562c948e026faa15708bfc9e2d7 (diff)
Remove sourcemaps from production build
Diffstat (limited to 'webpack.prod.js')
-rw-r--r--webpack.prod.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/webpack.prod.js b/webpack.prod.js
index bf0ae2e0..fd929c5e 100644
--- a/webpack.prod.js
+++ b/webpack.prod.js
@@ -3,6 +3,5 @@ const merge = require('webpack-merge')
const common = require('./webpack.common.js')
module.exports = merge(common, {
- mode: 'production',
- devtool: '#source-map'
+ mode: 'production'
})