fix(external-api): build with polyfill for IE11
This commit is contained in:
parent
db71de97af
commit
81e36b2a26
|
@ -172,7 +172,12 @@ module.exports = [
|
|||
// JitsiMeetExternalAPI).
|
||||
Object.assign({}, config, {
|
||||
entry: {
|
||||
'external_api': './modules/API/external/index.js'
|
||||
'external_api': [
|
||||
|
||||
// XXX Required by at least IE11 at the time of this writing.
|
||||
'babel-polyfill',
|
||||
'./modules/API/external/index.js'
|
||||
]
|
||||
},
|
||||
output: Object.assign({}, config.output, {
|
||||
library: 'JitsiMeetExternalAPI',
|
||||
|
|
Loading…
Reference in New Issue