We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de58fc2 commit c03bc6aCopy full SHA for c03bc6a
live-view.js
@@ -700,9 +700,7 @@ async function fetchLiveViewScripts(frameDocument) {
700
701
} else {
702
703
- let resp = await axios.get(script.src);
704
-
705
- addScript(frameDocument, resp, '', script.type);
+ addScript(frameDocument, false, script.src, script.type);
706
707
// delete original
708
script.remove();
@@ -711,7 +709,7 @@ async function fetchLiveViewScripts(frameDocument) {
711
709
712
710
713
714
- addScript(frameDocument, script.textContent, '', script.type);
+ addScript(frameDocument, script.textContent, false, script.type);
715
716
717
0 commit comments