Подскажите пожалуйста, как настроить сервер чтобы прочитать файл, который лежит на гитхабе и подгрузить данные в проект?
Стоит ограничение и выдается ошибка:
Access to fetch at 'https://github.com/stn32/store-06/blob/main/db/db.json' from origin '127.0.0.1:5500' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
Пробовал добавить "mode: 'no-cors' " , но не помогает:
// get data
async function getData() {
let result = await fetch("https://github.com/stn32/store-06/blob/main/db/db.json", { mode: 'no-cors' })
.then((response) => response.json());
return result;
}
getData().then((result) => showData(result));