Hi all, I've been using ring-defaults
with the default settings and have added some links to a third party resources:
[:link {:href "<https://unpkg.com/leaflet@1.2.0/dist/leaflet.css>"
:integrity "sha512-..."
:crossorigin ""}]
[:link {:src "<https://unpkg.com/leaflet@1.2.0/dist/leaflet.js>"
:integrity "sha512-..."
:crossorigin ""}]
The end result is that the js request goes through, but the css doesn't. I would have thought that neither would work without some CORS middleware, like https://github.com/r0man/ring-cors. What I'm missing?Ah, nm, misunderstood how CORS works, got some clarification.