diff --git a/src/bootstrap/webpack.config.js b/src/bootstrap/webpack.config.js index 71019d4f34..a21f751228 100644 --- a/src/bootstrap/webpack.config.js +++ b/src/bootstrap/webpack.config.js @@ -24,6 +24,9 @@ module.exports = { }, target: 'web', output: { + // This is necessary to allow internal apps to bundle their own code with + // webpack which may conflict with us. + jsonpFunction: '__dfinityJsonp', path: path.resolve(__dirname, './dist'), filename: '[name].js', },