This codemod removes app.use() and the use of middleware is no longer supported.
š¦ Impact Level: Minimal
What Changed
With v4 of Fastify, app.use() has been removed and the use of middleware is no longer supported.
If you need to use middleware, use @fastify/middie or @fastify/express, which will continue to be maintained. However, it is strongly recommended that you migrate to Fastify's hooks.
Before
jsx
After
jsx