Enforce loading babel-polyfill first
This is to avoid loading anything before loading the polyfill, otherwise we risk loading dependencies (such as React) before it. This was causing the compatibility page to fail somehow. See https://github.com/facebook/react/issues/8379 Fixes https://github.com/vector-im/riot-web/issues/6562
This commit is contained in:
parent
6b2c8539a3
commit
9b055171ab
2 changed files with 5 additions and 12 deletions
|
@ -8,6 +8,11 @@ if (!og_image_url) og_image_url = 'https://riot.im/app/themes/riot/img/logos/rio
|
|||
|
||||
module.exports = {
|
||||
entry: {
|
||||
main: [
|
||||
// Load this first to avoid issues where some imports (namely react)
|
||||
// potentially before babel-polyfill.
|
||||
'babel-polyfill',
|
||||
],
|
||||
"bundle": "./src/vector/index.js",
|
||||
"indexeddb-worker": "./src/vector/indexeddb-worker.js",
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue