Я пытаюсь прочитать json
файл из локальной сети, но в ответ я получаю сообщение об ошибке, похожее на это
Fetch API cannot load file:///var/www/desktop-electron//dashboard/bnb.json. URL scheme "file" is not supported
Вот мой код
fetch(`${drr}/dashboard/bnb.json`)
.then(res => res.json())
.then(res => {
this.currency = res;
Object.assign(this.stock, res.pairs[0]);
Object.assign(this.header, res.pairs[0]);
this.header.name = res.name;
}).catch(function(e) { console.log(e) });
Iпрочитал все решения, которые от Google, но не может решить проблему!