LeagueStats/client/babel.config.js

15 lines
247 B
JavaScript
Raw Normal View History

2019-03-30 22:55:48 +00:00
module.exports = {
2023-09-20 20:01:43 +00:00
presets: ['@babel/preset-env'],
plugins: [
function () {
return {
visitor: {
MetaProperty(path) {
path.replaceWithSourceString('process')
},
},
}
},
2020-06-21 11:39:02 +00:00
],
2019-03-30 22:55:48 +00:00
}