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
In case the url is something like:
http://localhost:8001/index.html?a=b
It seems that this snippet is not inserted.
<!-- Inserted by Reload --> <script src="/reload/reload.js"></script> <!-- End Reload -->
In start.js:
} else if (url.isType(CONTENT_TYPE)) { readFile(url.getPath, 'utf8') .alt(readFile(url.rootpath, 'utf8')) .fork(resolveNotFound(res), resolveWith(model.reload, res))
url.isType(CONTENT_TYPE is false, so resolveWith is not executed
url.isType(CONTENT_TYPE
resolveWith
The text was updated successfully, but these errors were encountered:
Could also be somehow related to #199 ?
Sorry, something went wrong.
No branches or pull requests
In case the url is something like:
http://localhost:8001/index.html?a=b
It seems that this snippet is not inserted.
In start.js:
url.isType(CONTENT_TYPE
is false, soresolveWith
is not executedThe text was updated successfully, but these errors were encountered: