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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2019-02-11 21:41:00 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2019-02-13 11:03:12 +0300
commit2e7cbc5e1b5caed31cef9fc39c3dbc838478e03a (patch)
treedd71c3c0619380078ca1289964ba2f95ea737fb5 /webpack.common.js
parent329da5fb992f6a3400fd20f34efb1752f05030e5 (diff)
Move oauth2 to global webpack config
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'webpack.common.js')
-rw-r--r--webpack.common.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/webpack.common.js b/webpack.common.js
index a182fd74244..117c6197916 100644
--- a/webpack.common.js
+++ b/webpack.common.js
@@ -1,3 +1,4 @@
const core = require('./core/webpack');
+const oauth2 = require('./apps/oauth2/webpack')
-module.exports = [].concat(core);
+module.exports = [].concat(core, oauth2);