You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently our cursors are pointed to our Unpkg URLs, which isn't awesome, as the links may change from version to version.
Describe the solution you'd like
I'd be pretty stoked if we could use data URIs instead of URLs to get the cursor images.
The text was updated successfully, but these errors were encountered:
I've switched us from using `file-loader` to `url-loader`. This will automatically convert local URL
imports to data URIs, which means the framework no longer needs to load them from a remote URL.
#207
I’ve added a SCSS function that, when passed a file path, will inject the file as a data URI. This
is super helpful since it ensures that the cursor images will always be available for the CSS. This
issue currently prevents the npm version of the library from being usable at all.
#207
Is your feature request related to a problem? Please describe.
Currently our cursors are pointed to our Unpkg URLs, which isn't awesome, as the links may change from version to version.
Describe the solution you'd like
I'd be pretty stoked if we could use data URIs instead of URLs to get the cursor images.
The text was updated successfully, but these errors were encountered: