При попытке получить данные через fetch, выдает такую ошибку
Хотя, если ссылку просто вставить в браузер, она вернет результат
from origin 'http://localhost:8060' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: 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.
const request = await fetch(api, {
method: 'POST',
headers: {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Credentials': 'true',
},
});
При попытке выставить
mode: 'no-cors'
возвращает странный объект, а не ответ от апи