I am making CORS calls. Now, every api call has a OPTIONS preflight call. Is it possible to cache the OPTIONS preflight call?
I see that Cache-Control
header can be used to cache actual GET response. https://www.fastly.com/blog/caching-cors
But how do I cache the response of the OPTIONS call?