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-03 21:56:44 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2019-02-14 00:20:07 +0300
commit7f886541473fb73591a8930e322250cdc6496bfc (patch)
treec0025ae7b41bece3a8c6897a093f5ceb6d5d57f7 /webpack.common.js
parent53e8957a556af086ce66b8eba45f0013391d7f0d (diff)
Move of files_versions to webpack
* Move CSS into bundle * Old merged.json no longer needed! * No need to load the style still Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'webpack.common.js')
-rw-r--r--webpack.common.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/webpack.common.js b/webpack.common.js
index 9a117ba4b3c..f6a0d0213ae 100644
--- a/webpack.common.js
+++ b/webpack.common.js
@@ -1,5 +1,10 @@
const core = require('./core/webpack');
const files_trashbin = require('./apps/files_trashbin/webpack')
+const files_versions = require('./apps/files_versions/webpack');
const oauth2 = require('./apps/oauth2/webpack')
-module.exports = [].concat(core, files_trashbin, oauth2);
+module.exports = [].concat(
+ core,
+ files_trashbin,
+ files_versions,
+ oauth2);