My application has a front end that is served through the API. The API handles some of the routes while the front-end handles others.
For example: My authentication routes are all handled through /auth/*.
With ESW enabled, the /auth/* routes aren't found because it's searching through the cache first. Can I tell ESW to ignore those /auth/* routes? Is there a strategy for these sorts of routes?
My application has a front end that is served through the API. The API handles some of the routes while the front-end handles others.
For example: My authentication routes are all handled through
/auth/*.With ESW enabled, the
/auth/*routes aren't found because it's searching through the cache first. Can I tell ESW to ignore those/auth/*routes? Is there a strategy for these sorts of routes?