summaryrefslogtreecommitdiffstats
path: root/webpack.common.js
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2019-02-11 19:30:16 +0100
committerRoeland Jago Douma <roeland@famdouma.nl>2019-02-13 09:03:11 +0100
commit329da5fb992f6a3400fd20f34efb1752f05030e5 (patch)
tree8d4d8538eb849298faf7ed7e5156d1acc75541ac /webpack.common.js
parent6c6642e8eec340f13dc2265f25dec620a5cd16ed (diff)
downloadnextcloud-server-329da5fb992f6a3400fd20f34efb1752f05030e5.tar.gz
nextcloud-server-329da5fb992f6a3400fd20f34efb1752f05030e5.zip
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);