Redirect to home / on error?
Is it possible to redirect to home (/) on error? I have created error.vue in the root, alongside app.vue, and added the following code but doesn't seem to do anything... any thoughts?
<template>
<div></div>
</template>
<script setup>
clearError({ redirect: '/' })
</script>