We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Even though I'm using the release files there seems to be a "forgotten" (?) webpack-dev server config active:
Comes from this passage. I could only get rid of by patching it:
diff --git a/node_modules/leaflet-distortableimage/dist/leaflet.distortableimage.js b/node_modules/leaflet-distortableimage/dist/leaflet.distortableimage.js index 4f030b1..24ee13b 100644 --- a/node_modules/leaflet-distortableimage/dist/leaflet.distortableimage.js +++ b/node_modules/leaflet-distortableimage/dist/leaflet.distortableimage.js @@ -4616,12 +4616,12 @@ AbstractXHRObject.prototype._start = function(method, url, payload, opts) { } }; - try { - self.xhr.send(payload); - } catch (e) { - self.emit('finish', 0, ''); - self._cleanup(false); - } + // try { + // self.xhr.send(payload); + // } catch (e) { + // self.emit('finish', 0, ''); + // self._cleanup(false); + // } };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Even though I'm using the release files there seems to be a "forgotten" (?) webpack-dev server config active:
Comes from this passage. I could only get rid of by patching it:
The text was updated successfully, but these errors were encountered: