diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-09-07 11:09:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-07 11:09:25 +0200 |
commit | 57437e8fc845e990042dc2b497b25d87f1ce1c21 (patch) | |
tree | c75e397bd7e31257863ccd9a471624c63006fb65 /core | |
parent | 1cfb8513004864640be506b5ed288dea85d79855 (diff) | |
parent | 41fd71fb82f5b1205410ec9b4ef8b9993bf49578 (diff) | |
download | nextcloud-server-57437e8fc845e990042dc2b497b25d87f1ce1c21.tar.gz nextcloud-server-57437e8fc845e990042dc2b497b25d87f1ce1c21.zip |
Merge pull request #16977 from nextcloud/bugfix/noid/webpack-jsonp
Use different jsonpFunction for entry points
Diffstat (limited to 'core')
-rw-r--r-- | core/webpack.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/webpack.js b/core/webpack.js index 1cbd381aa4a..b421e12a567 100644 --- a/core/webpack.js +++ b/core/webpack.js @@ -10,7 +10,8 @@ module.exports = [ }, output: { filename: '[name].js', - path: path.resolve(__dirname, 'js/dist') + path: path.resolve(__dirname, 'js/dist'), + jsonpFunction: 'webpackJsonpCore' }, module: { rules: [ |