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.