How to bypass data.plasmic.app to get my data directly?

So today there was a disruption in the server, suddenly the computers started getting cors error

Access to fetch at ‘https://data.plasmic.app/api/v1/server-data/sources/**************/execute’ from origin ‘my origin’ has been blocked by CORS policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource.

(luckily it fixed after some minutes)
When I opened chrome console I found out my site doesn’t directly fetches data from supabase like I thought, data.plasmic.app fetches it from my supabase and then it serves to the client.
My question is how to make it skip data.plasmic.app and get it directly from supabase? I am using plain javascript for my project, 0 code components. If someone could tell me I’d be grateful

Hi @anderson_pena, the integrations features always go through data.plasmic.app for security purposes to prevent secret API tokens from being leaked on the frontend. If you don’t use secret API tokens, you can switch to using data fetching code components instead of integrations.