Fabric
Configuration
import { createConfig, fabric } from "@spandex/core";
export const config = createConfig({
providers: [
fabric({
appId: "YOUR_FABRIC_APP_ID",
// Optional, use if you have negotiated service
apiKey: "YOUR_FABRIC_API_KEY",
// Optional, only set if you have a private Fabric deployment
url: undefined,
}),
// ...
],
});