VueTorrent/babel.config.js

15 lines
243 B
JavaScript
Raw Normal View History

2021-01-27 15:24:23 +03:00
module.exports = {
presets: ['@babel/preset-env'],
plugins: [
function () {
return {
visitor: {
MetaProperty(path) {
path.replaceWithSourceString('process')
}
}
}
}
2021-01-27 15:24:23 +03:00
]
}