fix: make it global?

This commit is contained in:
2025-07-06 12:55:30 -07:00
parent 17cfb11e8a
commit c0a276947a

View File

@ -70,7 +70,7 @@ export const instantiateServer = (): void => {
server.register(fastifyRawBody, { server.register(fastifyRawBody, {
encoding: "utf8", encoding: "utf8",
field: "rawBody", field: "rawBody",
global: false, global: true,
runFirst: true, runFirst: true,
}); });