[Vuejs]-Browserlist config do not include Map polyfill

0👍

Found solution by adding es.map polyfill to babel.config.js file:

  presets: [
    ['@vue/cli-plugin-babel/preset', {
      polyfills: [
        'es.map',
      ],
    }],
  ],
}```

Leave a comment