Compatible to IE9

yarn add babel-polyfill

yarn add es6-promise

module.exports = {
  entry: {
    app: ["./src/main.js"]
  },

Changed

module.exports = {
  entry: {
    app: ["babel-polyfill", "./src/main.js"]
  },

main.js

import 'babel-polyfill'
import 'es6-promise/auto'

 

Guess you like

Origin www.cnblogs.com/ronle/p/11118457.html