LeagueStats/client/babel.config.js
2023-09-20 22:01:43 +02:00

14 lines
247 B
JavaScript

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