This commit is contained in:
adueck 2023-01-30 00:18:27 +05:00
parent 71d8e95315
commit f5683a7c6e
1 changed files with 1 additions and 0 deletions

View File

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