const connection = connect({
url: ENV,
fetch: (url, init) => {
delete init["cache"];
return fetch(url, init);
},
});
const db = drizzle(connection);
app.get("/users", async () => ...);
const connection = connect({
url: ENV,
fetch: (url, init) => {
delete init["cache"];
return fetch(url, init);
},
});
const db = drizzle(connection);
app.get("/users", async () => ...);