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-11 21:30:16 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2019-02-13 11:03:11 +0300
commit329da5fb992f6a3400fd20f34efb1752f05030e5 (patch)
tree8d4d8538eb849298faf7ed7e5156d1acc75541ac /webpack.common.js
parent6c6642e8eec340f13dc2265f25dec620a5cd16ed (diff)
Move webpack config to root
Then we can include all server repo webpack configs in 1 go Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'webpack.common.js')
-rw-r--r--webpack.common.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/webpack.common.js b/webpack.common.js
new file mode 100644
index 00000000000..a182fd74244
--- /dev/null
+++ b/webpack.common.js
@@ -0,0 +1,3 @@
+const core = require('./core/webpack');
+
+module.exports = [].concat(core);