From f87f28e679189036f8ceb1619273464bb9a53920 Mon Sep 17 00:00:00 2001 From: Tyler Myracle Date: Sat, 20 Jan 2024 00:54:01 -0600 Subject: [PATCH] add back json handling to express --- apps/server/src/app/app.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/server/src/app/app.ts b/apps/server/src/app/app.ts index 70887270..f509a27c 100644 --- a/apps/server/src/app/app.ts +++ b/apps/server/src/app/app.ts @@ -109,6 +109,7 @@ app.use( app.use('/v1/stripe', express.raw({ type: 'application/json' })) app.use(express.urlencoded({ extended: true })) +app.use(express.json()) // ========================================= // API ⬇️