Sitemap for Netlify Site

I have a website with the url : https://chessnewtab.netlify.app.

I want to make a sitemap for it, but I cannot understand how to do it using the plugin.
I don’t understand how to get to the netlify.toml file either.

Hey @Skakfome,

That website doesn’t need a sitemap. It just has 1 page - that’s the index.html and it’s not generated using a framework like React. So, there are no additional pages that a search engine would need to find.

But I cannot add it to a search engine without a sitemap.

You can manually make a sitemap file, just create a file called sitemap.xml and follow the specification.

https://www.sitemaps.org/protocol.html

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>http://www.example.com/foo.html</loc>
    <lastmod>2018-06-04</lastmod>
  </url>
</urlset>

I have stopped working on this site, I will use this for my next website