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 💨 //