Just to make sure I got this right: trying to use ...
# ktor
o
Just to make sure I got this right: trying to use CORS feature, but I want to install it on a single route. The
OPTIONS
endpoint isn't autogenerated the way it is if you install it at the application level, forcing me to define it myself (not a big deal, since
options("{...}")
works). But is this on purpose or a bug? To be clear, I tested it installing it at the app level and there it did generate the
OPTIONS
route.
👀 1