there was a problem with the fetch request to the express server via vue cli, there was an error with "cors", fixed it, now I get the request, but I see it in the networke of the developer tool enter image description here but the console is empty enter image description here here is the code:
methods: {
async getInfo () {
const response = await fetch('https://ksjkfsjdbnfksjfksjf744.netlify.app/.netlify/functions/api/demo',
{ mode: 'no-cors' })
const responseString = await response
const responseObject = await JSON.parse(JSON.stringify(responseString))
console.log(responseString)
console.log(responseObject)
}
can't solve the problem