Israel Ortuño
Israel Ortuño
I was not using an `App.vue` file and I was facing this issue when navigating from a page with disabled layout option to a page with layout enabled. https://github.com/nuxt/framework/issues/7038#issuecomment-1251680876 I...
Seems like fixed in rc-12 release. This can be closed @danielroe
Still no luck, `@nuxt/sitemap` in `dependences` but `sitemap.xml` still gets 404. What's weird is that `/sitemap-routes.json` returns an empty object `{}`. It does not even include the homepage.
I did the same as @jonathanmelville. Moved to generate the sitemap at build time.
@madebyfabian thanks a lot! This just works!
+1 here, I was looking for the same. I found https://github.com/robsontenorio/vue-api-query which does that, I wish we could have some kind of adapters here
I have been facing a similar issue for a week now but not sure what's causing it. Still trying to figure out a pattern to raise an issue.
I was able to debug this (for my case). I was experiencing this in Vercel when having URL query parameters containing spaces or other symbols like slashes `/?redirect=/my-account`. Not sure...
Facing the same issue. Found a workaround by adding those pages manually from a module: ```ts import { defineNuxtModule, extendPages } from '@nuxt/kit' import { resolve } from 'pathe' export...
I am with @Ilmion `` does not seem to work when not used in a `` tag. The only way I could make it work was like this in my...