aboutsummaryrefslogtreecommitdiff
path: root/vnext/webpack.config.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-11-11 15:56:03 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:53 +0300
commit5d01de14ee14c5f86d8f2007c68963cc1f1759ea (patch)
tree5194c18bbc18f0833604224f4bd704dba14b46c4 /vnext/webpack.config.js
parent9f1dd954d7023c6a121659d1299fb83fc117a66d (diff)
IE compatibility
Diffstat (limited to 'vnext/webpack.config.js')
-rw-r--r--vnext/webpack.config.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/vnext/webpack.config.js b/vnext/webpack.config.js
index 821070f6..35a698e0 100644
--- a/vnext/webpack.config.js
+++ b/vnext/webpack.config.js
@@ -13,7 +13,14 @@ module.exports = (env, argv) => {
mode: dev ? 'development' : 'production',
entry: {
'Juick': [
+ 'core-js/modules/es6.array.map',
+ 'core-js/modules/es6.object.create',
+ 'core-js/modules/es6.object.define-property',
+ 'core-js/modules/es6.object.set-prototype-of',
'core-js/modules/es6.promise',
+ 'core-js/modules/es6.symbol',
+ 'core-js/modules/web.dom.iterable',
+ 'url-polyfill',
__dirname + '/src/index.js',
__dirname + '/src/style/main.css'
]