最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - webpack 2 doesn't work on IE11? - Stack Overflow

programmeradmin2浏览0评论

I have a very basic javascript-project that uses webpack (^2.6.0) as a module bundler. There is one dependency as a vendor module, and I have one entry point. My configuration is as follows:

const path = require('path');
const webpack = require('webpack');

module.exports = {
    entry: {
        bundle: './modules/main.js',
        vendor: ['react']
    },
    output: {
        path: path.join(__dirname, 'build'),
        filename: '[name].js',
        chunkFilename: '[id].js'
    },
    plugins: [
        new webpack.optimize.CommonsChunkPlugin({
            name: "vendor"
        })
    ]
};

This creates the bundles bundle.js and vendor.js. The vendor-bundle also contains the webpack-bootstrap-code, which is loaded BEFORE any of my modules are loaded. Now, inspecing that bootstrapping code reveals that on line 40, webpack generated

/******/    var resolvedPromise = new Promise(function(resolve) { resolve(); });

Unfortunately, Promise is not available on IE11, and even if you include a polyfill that includes Promise (with e.g. import 'babel-polyfill') as the first thing in the entry point, or even as its own entry point, it will never get executed before the bootstrapping code runs, which means I can't use this code on IE11 unless I include a Promise-polyfill manually before my webpack-bundles. Unsurprisingly, IE11 throws a Promise is not defined error before I even get to any of my code or even to the vendor bundle.

Am I missing something here or is this the expected behavior? I can't find anything in the webpack docs to counteract this issue.

I have a very basic javascript-project that uses webpack (^2.6.0) as a module bundler. There is one dependency as a vendor module, and I have one entry point. My configuration is as follows:

const path = require('path');
const webpack = require('webpack');

module.exports = {
    entry: {
        bundle: './modules/main.js',
        vendor: ['react']
    },
    output: {
        path: path.join(__dirname, 'build'),
        filename: '[name].js',
        chunkFilename: '[id].js'
    },
    plugins: [
        new webpack.optimize.CommonsChunkPlugin({
            name: "vendor"
        })
    ]
};

This creates the bundles bundle.js and vendor.js. The vendor-bundle also contains the webpack-bootstrap-code, which is loaded BEFORE any of my modules are loaded. Now, inspecing that bootstrapping code reveals that on line 40, webpack generated

/******/    var resolvedPromise = new Promise(function(resolve) { resolve(); });

Unfortunately, Promise is not available on IE11, and even if you include a polyfill that includes Promise (with e.g. import 'babel-polyfill') as the first thing in the entry point, or even as its own entry point, it will never get executed before the bootstrapping code runs, which means I can't use this code on IE11 unless I include a Promise-polyfill manually before my webpack-bundles. Unsurprisingly, IE11 throws a Promise is not defined error before I even get to any of my code or even to the vendor bundle.

Am I missing something here or is this the expected behavior? I can't find anything in the webpack docs to counteract this issue.

Share Improve this question asked May 24, 2017 at 17:37 SheeniSheeni 1461 silver badge4 bronze badges 2
  • 1 Check out this thread on Github: github./mzabriskie/axios/issues/135#issuement-264216884 – James Kraus Commented May 24, 2017 at 17:44
  • 1 This doesn't seem to be the same issue - it's not possible to load anything before webpack runs its bootstrap code, so even the ProvidePlugin doesn't work. It seems to be a bug with the newest webpack version though (github./webpack/webpack/issues/4916) – Sheeni Commented May 24, 2017 at 18:10
Add a ment  | 

2 Answers 2

Reset to default 5

This seems to be an issue introduced with webpack 2.6.0, a bug is already issued: https://github./webpack/webpack/issues/4916

I had a similar issue when moving to babel 7. I was not specifying the useBuiltIns key so the polyfills were not being applied.

"useBuiltIns": "usage" is the important line I was missing.

"debug": true was also very helpful in determining what polyfills were being applied

{
  "presets": [
    [
      "@babel/preset-env",
      {
        "targets": {
          "browsers": ["IE >= 11"]
        },
        "useBuiltIns": "usage",
        "debug": true
      }
    ],
    "@babel/preset-react"
  ],
  "plugins": [
      "@babel/plugin-proposal-object-rest-spread", 
      "@babel/plugin-proposal-class-properties", 
      "@babel/plugin-transform-classes"
  ],
  "ignore": ["/node_modules/*"]
}
发布评论

评论列表(0)

  1. 暂无评论