|
@@ -89,11 +89,6 @@ const config = {
|
89
|
89
|
|
90
|
90
|
loader: 'expose-loader?$!expose-loader?jQuery',
|
91
|
91
|
test: /\/node_modules\/jquery\/.*\.js$/
|
92
|
|
- }, {
|
93
|
|
- // Set scope to window for URL polyfill.
|
94
|
|
-
|
95
|
|
- loader: 'imports-loader?this=>window',
|
96
|
|
- test: /\/node_modules\/url-polyfill\/.*\.js$/
|
97
|
92
|
}, {
|
98
|
93
|
// Allow CSS to be imported into JavaScript.
|
99
|
94
|
|
|
@@ -137,13 +132,7 @@ const config = {
|
137
|
132
|
module.exports = [
|
138
|
133
|
Object.assign({}, config, {
|
139
|
134
|
entry: {
|
140
|
|
- 'app.bundle': [
|
141
|
|
-
|
142
|
|
- // babel-polyfill and fetch polyfill are required for IE11.
|
143
|
|
- 'babel-polyfill',
|
144
|
|
- 'whatwg-fetch',
|
145
|
|
- './app.js'
|
146
|
|
- ],
|
|
135
|
+ 'app.bundle': './app.js',
|
147
|
136
|
|
148
|
137
|
'device_selection_popup_bundle':
|
149
|
138
|
'./react/features/settings/popup.js',
|
|
@@ -153,10 +142,6 @@ module.exports = [
|
153
|
142
|
|
154
|
143
|
'dial_in_info_bundle': [
|
155
|
144
|
|
156
|
|
- // babel-polyfill and fetch polyfill are required for IE11.
|
157
|
|
- 'babel-polyfill',
|
158
|
|
- 'whatwg-fetch',
|
159
|
|
-
|
160
|
145
|
// atlaskit does not support React 16 prop-types
|
161
|
146
|
'./react/features/base/react/prop-types-polyfill.js',
|
162
|
147
|
|
|
@@ -172,12 +157,7 @@ module.exports = [
|
172
|
157
|
// JitsiMeetExternalAPI).
|
173
|
158
|
Object.assign({}, config, {
|
174
|
159
|
entry: {
|
175
|
|
- 'external_api': [
|
176
|
|
-
|
177
|
|
- // XXX Required by at least IE11 at the time of this writing.
|
178
|
|
- 'babel-polyfill',
|
179
|
|
- './modules/API/external/index.js'
|
180
|
|
- ]
|
|
160
|
+ 'external_api': './modules/API/external/index.js'
|
181
|
161
|
},
|
182
|
162
|
output: Object.assign({}, config.output, {
|
183
|
163
|
library: 'JitsiMeetExternalAPI',
|