0👍
Found solution by adding es.map polyfill to babel.config.js file:
presets: [
['@vue/cli-plugin-babel/preset', {
polyfills: [
'es.map',
],
}],
],
}```
Source:stackexchange.com
0👍
Found solution by adding es.map polyfill to babel.config.js file:
presets: [
['@vue/cli-plugin-babel/preset', {
polyfills: [
'es.map',
],
}],
],
}```