We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am not passing any link to the slides and I see that after generation href="false" in the generated html page.
href="false"
<div class="vueperslide" href="false" target="_self" face="false" ...
How can I fix this?
The text was updated successfully, but these errors were encountered:
Hey, we had the same issue with SSG and Nuxt 3.
There doesn't look to be an option in VueperSlide to disable that href="false" being rendered and it just does it no matter what.
We ended up with a workaround and getting the prerender crawler to ignore the /false route in the nuxt.config.ts - Selective Pre-rendering
/false
export default defineNuxtConfig({ nitro: { prerender: { ignore: ["/false"], }, }, });
Might be too late for you as your comment is more than 6 months ago.
But commenting in case this is useful for anyone else that has a similar issue.
Sorry, something went wrong.
No branches or pull requests
I am not passing any link to the slides and I see that after generation
href="false"
in the generated html page.<div class="vueperslide" href="false" target="_self" face="false" ...
How can I fix this?
The text was updated successfully, but these errors were encountered: