LeagueStats/client-new/babel.config.js
2023-09-20 21:49:05 +02:00

14 lines
247 B
JavaScript

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