Is there a possibility to generate sitemap.xml in SPA React project?

34 Views Asked by At

I have SPA in React 18.2.0 and I want to generate sitemap.xml. I have tried the React Router Sitemap package and it does not work with the latest version of React. I also want it to generate all subpages according to my routes.js file.

const routes = [
  {
    path: "/",
    component: Home
  },
  {
    path: "/sortiment",
    component: Sortiment
  },
  {
    path: "/kontakt",
    component: Contact
  },
  {
    path: "/aktualne",
    component: News
  },
  {
    path: "/o-nas",
    component: About
  },
  {
    path: "/nase-sluzby",
    component: Services
  },
  {
    path: "/sortiment/:categoryName",
    component: CategoryPage
  },
]; 

I also tried installing React Router Sitemap Generator and the result was the same.

0

There are 0 best solutions below