Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Relay

Configuration

import { createConfig, relay } from "@spandex/core";
 
export const config = createConfig({
  providers: [
    relay({
      // Optional, override the API base URL
      url: undefined,
    }),
    // ...
  ],
});