ring

2018-02-02T20:31:45.000089Z

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?

2018-02-02T21:30:52.000189Z

Ah, nm, misunderstood how CORS works, got some clarification.