when trying to send a request (I make a request with vanilla JS) to my Next JS application (I only need the status code of the request) it gives an error about the request being blocked by CORS. How can I fix this? My next application uses Clerk, maybe it is somehow interfering
const response = await fetch(MyUrl, {
method: 'GET',
});