Adrian Jakob

Results 15 comments of Adrian Jakob

https://github.com/nuxt-community/sitemap-module/issues/248#issuecomment-1129125835

We finally finished a first version for Nuxt 3, feel free to check it out. :tada: `yarn add @funken-studio/sitemap-nuxt-3 ` https://github.com/funken-studio/sitemap-module-nuxt-3/tree/experimental https://www.npmjs.com/package/@funken-studio/sitemap-nuxt-3

Nuxt 3 removed the `addServerMiddleware` function _(but for whatever reason only on production)_ see https://v3.nuxtjs.org/api/advanced/kit The problem is "sitemap-module" uses this function from Nuxt 2 to intercept any incoming requests...

also see https://github.com/nuxt/nuxt.js/issues/13559

So I kinda did it :partying_face:, at least a simple version supporting a single sitemap.xml (no sitemapindex.xml etc) **If there are enough people who need a full working version, I...

` sitemap.staticRoutes` doesn't seem to be set in the sitemap.ts? is the nuxt module loaded correctly ? try console.log in the sitemap.ts ```js const config = useRuntimeConfig() const sitemap =...

@Lars- yeah the staticRotues are missing so, something seems to be wrong in the `modules.js` does `routes` in `pages:extend ` contain all your routes? and does the ` nuxt.options.runtimeConfig.sitemap` in...

@scottingle nope, they should be excluded thats what's the ```js nuxt.options.sitemap.staticRoutes = routes .map((r) => r.path) .filter((path) => ![':', '*'].some((c) => path.includes(c))) ``` is for, dynamic routes need to be...

@heychazza not sure what you mean by that

> > @heychazza not sure what you mean by that > > Does this support the new version of Nuxt Content? @heychazza ah that's another nuxt module I see, should...