fix: raw body config

This commit is contained in:
2025-07-06 12:54:42 -07:00
parent a3d0753a66
commit 17cfb11e8a

View File

@ -68,12 +68,10 @@ export const instantiateServer = (): void => {
}); });
server.register(fastifyRawBody, { server.register(fastifyRawBody, {
encoding: "utf8", encoding: "utf8",
field: "rawBody", field: "rawBody",
global: false, global: false,
jsonContentTypes: [], runFirst: true,
routes: [],
runFirst: true,
}); });
server.get("/", (_request, response) => { server.get("/", (_request, response) => {