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, there is problem when we use costume url link for config LiveReloadScriptUrl.
Problem is with this code :
if (string.IsNullOrEmpty(_ClientScriptString)) { // Load `/LiveReloadClientScript.js from resource stream lock (_ClientScriptString) { if (string.IsNullOrEmpty(_ClientScriptString)) { using (var scriptStream = Assembly.GetExecutingAssembly() .GetManifestResourceStream("Westwind.AspNetCore.LiveReload.LiveReloadClientScript.js")) { if (scriptStream == null) throw new InvalidDataException("Unable to load LiveReloadClientScript.js Resource"); var buffer = new byte[scriptStream.Length]; scriptStream.Read(buffer, 0, buffer.Length); _ClientScriptString = System.Text.Encoding.UTF8.GetString(buffer); } } } }
Its always using internal Westwind.AspNetCore.LiveReload.LiveReloadClientScript.js
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, there is problem when we use costume url link for config LiveReloadScriptUrl.
Problem is with this code :
Its always using internal Westwind.AspNetCore.LiveReload.LiveReloadClientScript.js
The text was updated successfully, but these errors were encountered: