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

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-03-18 19:15:31 +0300
committerJulius Härtl <jus@bitgrid.net>2019-03-18 19:15:31 +0300
commit66adbbbe655ef62f1545a39c2bf31630455af8da (patch)
tree3d0343166617e728f41e37ede2a1dc5983e1d8c8 /webpack.prod.js
Add basic app structure
Signed-off-by: Julius Härtl <jus@bitgrid.net>
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 000000000..f081567bd
--- /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'
+})