diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2018-10-08 14:03:22 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2018-10-10 14:34:52 +0200 |
commit | 67c3730fbb8e12c6adda0af37d5a7ac8960415dc (patch) | |
tree | 4625e834d8812cff6c7f4a4bdae16ea9f8cda564 /settings/webpack.common.js | |
parent | 1dbd7172c31b2d611e49c7c8a60a05da134a4733 (diff) | |
download | nextcloud-server-67c3730fbb8e12c6adda0af37d5a7ac8960415dc.tar.gz nextcloud-server-67c3730fbb8e12c6adda0af37d5a7ac8960415dc.zip |
Add admin interface to enforce 2FA
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'settings/webpack.common.js')
-rw-r--r-- | settings/webpack.common.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/settings/webpack.common.js b/settings/webpack.common.js index 96b814c8365..b425f743859 100644 --- a/settings/webpack.common.js +++ b/settings/webpack.common.js @@ -2,11 +2,14 @@ const path = require('path') const { VueLoaderPlugin } = require('vue-loader'); module.exports = { - entry: './src/main.js', + entry: { + 'settings-vue': './src/main.js', + 'settings-admin-security': './src/main-admin-security' + }, output: { path: path.resolve(__dirname, './js'), publicPath: '/', - filename: 'settings-vue.js' + filename: '[name].js' }, module: { rules: [ |