Recently I discovered that you can upload javscript sourcemaps to sentry during your release process. This gives much better information when viewing issues on sentry.

For my nextjs projects my release scripts look something like this ..

sentry release new "$RELEASE" --org myorg --project myproject
sentry release set-commits "$RELEASE" --auto --org myorg --project myproject
sentry sourcemaps upload .next/static --org myorg --project myproject --release "$RELEASE" --url-prefix "~/_next/static"

sentry release finalize "$RELEASE" --org myorg --project myproject


It's making me fall in love with sentry all over again. It's just a top notch SaaS. Really impressed by whoever builds sentry.

65

How do you have the time or energy? :)

Took me a while to realize this in Livewire 👀

`wire:navigate` should NEVER be used for external links.

Otherwise Livewire tries to handle the navigation internally and you can end up with completely broken URLs.

Easy mistake to miss during development.
image

1

204