diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-02-11 19:30:16 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-02-13 09:03:11 +0100 |
commit | 329da5fb992f6a3400fd20f34efb1752f05030e5 (patch) | |
tree | 8d4d8538eb849298faf7ed7e5156d1acc75541ac /webpack.common.js | |
parent | 6c6642e8eec340f13dc2265f25dec620a5cd16ed (diff) | |
download | nextcloud-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.js | 3 |
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); |