/rfc/rfc1.xml as a server route, and /rfc/rfc1 as a pages Vue route. The filename-pattern in the server or pages directory would be [id].ts but then Nuxt prefers the server route over pages, and there's no way to narrow the server route with patterns like [id].xml.ts (note the ".xml"). Returning a string of HTML from the server route could work but Nuxt 3 removed nuxt.renderRoute() which existed in Nuxt 2, so how would I even render a route to HTML so that I could return in the server route. I've also looked at middleware to handle routing but I don't want to redirect and change the legacy URL structure.