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
Windows %USERPROFILE%.vscode\extensions macOS ~/.vscode/extensions Linux ~/.vscode/extensions
var lsAst = localStorage.getItem('astronaut_extension_settings'), sAst = (lsAst) ? JSON.parse(lsAst)['isAstExt'] : false; isAstExt = (sAst == undefined || sAst === true) ? true : sAst
!isAstExt &&
if()
if (!isAstExt && 'WebSocket' in window)
// <![CDATA[ <-- For SVG support var lsAst = localStorage.getItem('astronaut_extension_settings'), sAst = (lsAst) ? JSON.parse(lsAst)['isAstExt'] : false; isAstExt = (sAst == undefined || sAst === true) ? true : sAst if (!isAstExt && 'WebSocket' in window) {
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There is a problem in the extension when trying to use the live-server server at address 127.0.0.1: where it does not refresh the page.
Follow the steps below for a fix:
1° - Access the following directory on your system:
2° - Enter the folder \ritwickdey.liveserver-x.x.x\node_modules\live-server and open the file 'injected.html' in your editor
3° - Paste the following code above if('WebSocket in window')
4° - add
!isAstExt &&
insideif()
, as follows:The code should look like this:
After that save the changes and restart your VsCode
The text was updated successfully, but these errors were encountered: