aboutsummaryrefslogtreecommitdiffstats
path: root/settings/webpack.common.js
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2018-10-08 14:03:22 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2018-10-10 14:34:52 +0200
commit67c3730fbb8e12c6adda0af37d5a7ac8960415dc (patch)
tree4625e834d8812cff6c7f4a4bdae16ea9f8cda564 /settings/webpack.common.js
parent1dbd7172c31b2d611e49c7c8a60a05da134a4733 (diff)
downloadnextcloud-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.js7
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: [