I currently have a NuxtJs (Vue) application deployed on Netlify. The issue I am facing is that when I redirect to other pages, the URL ends up concatenating the last page and the next page.
For example, if the current page URL is https://page-example/register and I redirect to the next page using this code:
this.$router.push("confirmationsend");
On local, the URL I get is:
https://localhost:3001/confirmationsend
However, on Netlify, the URL turns out to be:
https://page-example/register/confirmationsend
Unfortunately, NuxtJs is unable to resolve this routing issue.