supporting multiple methods routes
- 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