We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93d12d2 commit 1036f0cCopy full SHA for 1036f0c
docs/assets/js/highlight.js
@@ -25,9 +25,10 @@ function changeElements(codeElements, endpoint) {
25
26
document.addEventListener('DOMContentLoaded', function() {
27
// check if BASE_URL is defined and reachable
28
- fetch(`${BASE_URL}`)
+ fetch(`${BASE_URL}embed/traceview`)
29
.then(response => {
30
if (!response.ok) {
31
+ console.log('Network response was not ok');
32
throw new Error('Network response was not ok');
33
}
34
return response.text();
0 commit comments