Files
smoo.it/babel.config.js
Robin C. Ladiges 854e57065f fix: fontawesome for IE11 (Proxy & unicode regexp)
I'd rather use `babel-plugin-proxy` instead of `proxy-polyfill`, but it doesn't seem to work with babel 7 currently.
https://github.com/krzkaczor/babel-plugin-proxy/issues/10
2023-01-23 01:02:39 +01:00

20 lines
323 B
JavaScript

module.exports = {
compact : true,
plugins : [
'transform-unicode-regexp-runtime',
],
presets : [
[
'@vue/cli-plugin-babel/preset',
{
useBuiltIns : 'usage',
targets : {
ie : 11,
chrome : 60,
firefox : 56,
},
},
],
],
}