From f5683a7c6e40b9668fabf87fa516636e28084d62 Mon Sep 17 00:00:00 2001 From: adueck Date: Mon, 30 Jan 2023 00:18:27 +0500 Subject: [PATCH] oops --- account/src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/account/src/index.ts b/account/src/index.ts index eb5e15c..51110a0 100644 --- a/account/src/index.ts +++ b/account/src/index.ts @@ -41,6 +41,7 @@ app.use("/feedback", cors(sameOriginCorsOpts), feedbackRouter); // TODO: check - does this work with the cors ? app.use("/payment", cors(sameOriginCorsOpts), paymentRouter); // Dictionary API +app.options("/dictionary", cors()); app.use("/dictionary", cors(), dictionaryRouter); // START 💨 //