Skip to content

supporting multiple methods routes

Choose a tag to compare

@PavloPoliakov PavloPoliakov released this 26 Jun 13:36
  • Supporting the routes like:
fastify.route({
  method: ["GET", "HEAD"],
  url: "/hello/complex-route",
  handler: async (req, reply) => ({
    greeting: "Hello from the complex route"
  })
});
  • updating the dependencies