EDEma Danceinlines.hashnode.dev·Feb 10, 2021 · 1 min readSentry.io custom error titlesShould be easy and straightforward, yet I had to find a (not so elegant) workaround. Sentry.init({ ... beforeSend: function(event, hint) { ... event.exception.values[0].type = 'My-Custom-Title'; return event; } }); Basically someone sa...00
EDEma Danceinlines.hashnode.dev·Feb 5, 2021 · 1 min readHello worldI mean, I couldn't resist. It's too classic, I couldn't start any other way. console.log('Hello world!') > Hello world!00