aboutsummaryrefslogtreecommitdiff
path: root/vnext/webpack.config.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-11-07 13:48:15 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:53 +0300
commit282e499d6afb793f413e080d30c6cd219a78ef06 (patch)
tree1fc22764398489c343d006e614ef0cbcee0fd410 /vnext/webpack.config.js
parentf7452e1928a4684b1b93790094b084dd1a445209 (diff)
merge project changes from legacy
Diffstat (limited to 'vnext/webpack.config.js')
-rw-r--r--vnext/webpack.config.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/vnext/webpack.config.js b/vnext/webpack.config.js
index 1eef1c71..3748e5db 100644
--- a/vnext/webpack.config.js
+++ b/vnext/webpack.config.js
@@ -13,6 +13,7 @@ module.exports = (env, argv) => {
mode: dev ? 'development' : 'production',
entry: {
'Juick': [
+ 'core-js/modules/es6.promise',
__dirname + '/src/index.js',
__dirname + '/src/style/main.css'
]
@@ -35,9 +36,7 @@ module.exports = (env, argv) => {
{
loader: 'postcss-loader', options: {
plugins: () => [
- require('autoprefixer')({
- browsers: 'last 4 versions, > 1%, ie >= 8'
- })
+ require('autoprefixer')({})
]
}
}