Leia o arquivo de texto em javascript
fetch("file.txt")
.then((response) => {
return response.text();
})
.then((text) => {
console.log(text);
});
Embarrassed Earthworm