diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-02-11 19:41:00 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-02-13 09:03:12 +0100 |
commit | 2e7cbc5e1b5caed31cef9fc39c3dbc838478e03a (patch) | |
tree | dd71c3c0619380078ca1289964ba2f95ea737fb5 /webpack.common.js | |
parent | 329da5fb992f6a3400fd20f34efb1752f05030e5 (diff) | |
download | nextcloud-server-2e7cbc5e1b5caed31cef9fc39c3dbc838478e03a.tar.gz nextcloud-server-2e7cbc5e1b5caed31cef9fc39c3dbc838478e03a.zip |
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.js | 3 |
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); |