Hey everybody,
hope you are doing well.
Is there any way to build error boundaries around astro components while using the static build option? Basically:
<ErrorBoundary>
<ComponentA />
</ErrorBoundary>
<ComponentB />
So when ComponentA cannot be rendered the build shouldn't fail. Also I don't looking for a property-based solution. I wanna catch any error which can occur in ComponentA.