Files
no-twitter-bot/src/lib/urql.ts
2025-11-27 18:15:48 -05:00

11 lines
256 B
TypeScript

import { Client, cacheExchange, fetchExchange } from "@urql/core";
const urql = new Client({
url: process.env.GRAPHQL_URL || "",
exchanges: [cacheExchange, fetchExchange]
});
console.log(`GRAPHQL_URL`, process.env.GRAPHQL_URL);
export default urql;