diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-02-03 19:56:44 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-02-13 22:20:07 +0100 |
commit | 7f886541473fb73591a8930e322250cdc6496bfc (patch) | |
tree | c0025ae7b41bece3a8c6897a093f5ceb6d5d57f7 /webpack.common.js | |
parent | 53e8957a556af086ce66b8eba45f0013391d7f0d (diff) | |
download | nextcloud-server-7f886541473fb73591a8930e322250cdc6496bfc.tar.gz nextcloud-server-7f886541473fb73591a8930e322250cdc6496bfc.zip |
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.js | 7 |
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); |