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
Hi,
I tried to use the clappr-queue-plugin, but the packaged version seems to include a reference to livereload.js, e.g.
(function(l, r) { if (l.getElementById('livereloadscript')) return; r = l.createElement('script'); r.async = 1; r.src = '//' + (window.location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1'; r.id = 'livereloadscript'; l.getElementsByTagName('head')[0].appendChild(r) })(window.document);
This causes an error when building an app with the plugin, since the deployed app tries to load livereload.js from a local path that doesn't exist.
Copying the source and including it in my code resolved the issue, so I think this may be a byproduct of your build process
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I tried to use the clappr-queue-plugin, but the packaged version seems to include a reference to livereload.js, e.g.
(function(l, r) { if (l.getElementById('livereloadscript')) return; r = l.createElement('script'); r.async = 1; r.src = '//' + (window.location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1'; r.id = 'livereloadscript'; l.getElementsByTagName('head')[0].appendChild(r) })(window.document);
This causes an error when building an app with the plugin, since the deployed app tries to load livereload.js from a local path that doesn't exist.
Copying the source and including it in my code resolved the issue, so I think this may be a byproduct of your build process
The text was updated successfully, but these errors were encountered: