VueTorrent/babel.config.js

14 lines
243 B
JavaScript

module.exports = {
presets: ['@babel/preset-env'],
plugins: [
function () {
return {
visitor: {
MetaProperty(path) {
path.replaceWithSourceString('process')
}
}
}
}
]
}