diff options
Diffstat (limited to 'vnext/webpack.config.js')
-rw-r--r-- | vnext/webpack.config.js | 5 |
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')({}) ] } } |