1👍
Ok, apparently the problem was with some breaking change after updating to Nuxt 3.7.1
from 3.6.x
. I had that code in /projects/list.vue
:
<div @click="navigateTo(`/projects/${project.name}`)">
<p>
Clicking here is ok, navigation works.
</p>
<nuxt-link :to="`/projects/${project.name}`">
Clicking here causes crash in 3.7.1.
</nuxt-link>
</div>
Source:stackexchange.com