diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-09-17 16:33:27 +0200 |
---|---|---|
committer | npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com> | 2019-09-28 09:39:28 +0000 |
commit | de6940352a2f708376219a89ec84a8e6d25ca59e (patch) | |
tree | 459bacfc183b24d611be1877fbe22bbcd4efb1d6 /webpack.common.js | |
parent | c8cd607681ac128228f57114ce14dd67ab05de04 (diff) | |
download | nextcloud-server-de6940352a2f708376219a89ec84a8e6d25ca59e.tar.gz nextcloud-server-de6940352a2f708376219a89ec84a8e6d25ca59e.zip |
Move settings to an app
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
Diffstat (limited to 'webpack.common.js')
-rw-r--r-- | webpack.common.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webpack.common.js b/webpack.common.js index 7315fa9f8bc..695dcc9c226 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -3,15 +3,15 @@ const merge = require('webpack-merge'); const { VueLoaderPlugin } = require('vue-loader'); const core = require('./core/webpack'); -const settings = require('./settings/webpack'); - const accessibility = require('./apps/accessibility/webpack'); + const comments = require('./apps/comments/webpack'); const files_sharing = require('./apps/files_sharing/webpack'); const files_trashbin = require('./apps/files_trashbin/webpack'); const files_versions = require('./apps/files_versions/webpack'); const oauth2 = require('./apps/oauth2/webpack'); const systemtags = require('./apps/systemtags/webpack'); +const settings = require('./apps/settings/webpack'); const twofactor_backupscodes = require('./apps/twofactor_backupcodes/webpack'); const updatenotifications = require('./apps/updatenotification/webpack'); const workflowengine = require('./apps/workflowengine/webpack'); |