Hi Team,
We have a Swagger page which is built-in with the API. This Swagger page is automatically generated by one of the library and maintained by our API developers. I am trying to give access to our Swagger page through APIGEE. I am using below Flow tag to load swagger page along with its .js and .css files.
<Flow name="documentation">
<Request/>
<Response/>
<Condition>(((proxy.pathsuffix MatchesPath "/docs") or (proxy.pathsuffix MatchesPath "/javascripts/*.min.js") or (proxy.pathsuffix MatchesPath "/stylesheets/spectaql.min.css")) and (request.verb = "GET"))</Condition>
</Flow>
The Problem i am facing here is, js file is loading but css file is not loading. Could you please help me where exactly i am doing error?
I am facing similar issue with GraphQL Playground. When i am trying to redirect through APIGEE, GraphQL Schema is not loading into webpage.