mirror of
https://github.com/khoj-ai/khoj.git
synced 2025-02-17 16:14:21 +00:00
11 lines
339 B
JavaScript
11 lines
339 B
JavaScript
|
var showConfig = document.getElementById("show-config");
|
||
|
showConfig.addEventListener("click", () => {
|
||
|
fetch("/config")
|
||
|
.then(response => response.json())
|
||
|
.then(data => {
|
||
|
for (let key in data) {
|
||
|
console.log('key: ', key);
|
||
|
console.log(data[key]);
|
||
|
}
|
||
|
});
|
||
|
});
|