mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2024-11-24 18:36:14 +03:00
14 lines
243 B
JavaScript
14 lines
243 B
JavaScript
module.exports = {
|
|
presets: ['@babel/preset-env'],
|
|
plugins: [
|
|
function () {
|
|
return {
|
|
visitor: {
|
|
MetaProperty(path) {
|
|
path.replaceWithSourceString('process')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|