stevedeighton

Results 2 comments of stevedeighton

For those still coming across this issue, I fixed it by adding `{runtime: 'automatic'}` with my `@babel/preset-react` preset. My `babel.config.js` file now looks like this: ``` module.exports = { presets:...

For me, the TextDecoder had a type mismatch issue with the above approach, so I solved it with this syntax instead: ``` import { TextEncoder, TextDecoder } from 'util'; Object.assign(global,...