Code Monkey home page Code Monkey logo

Comments (4)

huozhi avatar huozhi commented on July 16, 2024

It's an expected breaking change as the PR description mentioned, that we don't appending .xml extension for the dynamic sitemap.ts routes anymore.
If you're using sitemap.xml static file convention, it stills works as /sitemap.xml, but if you're using any dynamic routes with .ts or .js extension, the url is now /sitemap , and will be /sitemap/[id] if you're generating multi sitemaps with generateSitemaps() API.

We mentioned in the blog post but didn't mention it as breaking change, I've updated the blog post that it's mentioned as below now

[Breaking] Remove .xml extension for dynamic sitemap routes and align sitemap URLs between development and production (PR)

from next.js.

yekta avatar yekta commented on July 16, 2024

It's an expected breaking change as the PR description mentioned, that we don't appending .xml extension for the dynamic sitemap.ts routes anymore. If you're using sitemap.xml static file convention, it stills works as /sitemap.xml, but if you're using any dynamic routes with .ts or .js extension, the url is now /sitemap , and will be /sitemap/[id] if you're generating multi sitemaps with generateSitemaps() API.

We mentioned in the blog post but didn't mention it as breaking change, I've updated the blog post that it's mentioned as below now

[Breaking] Remove .xml extension for dynamic sitemap routes and align sitemap URLs between development and production (PR)

Thanks for the explanation. So there is no NextJS recommended way to serve the dynamic sitemap at /sitemap.xml, do I get this right? Because to me that sounds like a downside.

from next.js.

kiyasov avatar kiyasov commented on July 16, 2024

As a solution you can add rewrites to next.config.js

async rewrites() {
    return [
      {
        source: "/sitemap.xml",
        destination: "/sitemap",
      },
    ];
}

from next.js.

huozhi avatar huozhi commented on July 16, 2024

I had a PR (#66477) to improve the sitemap url generation, where we can always get a .xml for both single route and dynamic routes. This will resolve the migration pain

from next.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.