summaryrefslogtreecommitdiffstats
path: root/apps/oauth2/src/webpack.prod.js
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-06-14 20:09:06 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2018-06-19 11:42:41 +0200
commit1ff3f578980a29aee8d952e4cd7df786e955acd7 (patch)
treeb3380cf8998281e852652256b6b1a18cb80bf0e1 /apps/oauth2/src/webpack.prod.js
parent27259ea2a21cf0227be12bc9bfc2c997bc6ee44f (diff)
downloadnextcloud-server-1ff3f578980a29aee8d952e4cd7df786e955acd7.tar.gz
nextcloud-server-1ff3f578980a29aee8d952e4cd7df786e955acd7.zip
js-src => src
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/oauth2/src/webpack.prod.js')
-rw-r--r--apps/oauth2/src/webpack.prod.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/oauth2/src/webpack.prod.js b/apps/oauth2/src/webpack.prod.js
new file mode 100644
index 00000000000..f081567bd63
--- /dev/null
+++ b/apps/oauth2/src/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'
+})