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, {
encoding: "utf8",
field: "rawBody",
global: false,
jsonContentTypes: [],
routes: [],
runFirst: true,
encoding: "utf8",
field: "rawBody",
global: false,
runFirst: true,
});
server.get("/", (_request, response) => {