Can I override the CORS settings for an individual...
# ktor
v
Can I override the CORS settings for an individual route in ktor? As in, I have an API which should only be accessed from a particular domain, but I'd like one route to be accessed from anywhere. If so, any idea how? Thanks.
a
Since the CORS plugin is route-scoped, you can install it into a route. So you can install the plugin into the routing with the global configuration and into the route with a specific configuration.