LeagueStats/client-new/babel.config.js

15 lines
247 B
JavaScript
Raw Normal View History

2023-09-20 19:49:05 +00:00
module.exports = {
presets: ['@babel/preset-env'],
plugins: [
function () {
return {
visitor: {
MetaProperty(path) {
path.replaceWithSourceString('process')
},
},
}
},
],
}