openapi-fetch-sveltekit
v0.0.3
Published
Exposes a wrapper around fetch to include cookies on ssr
Readme
openapi-fetch-sveltekit - npm
Simple fetch wrapper to include cookies in ssr fetches.
Installation
- npm:
npm install openapi-fetch-sveltekit - pnpm:
pnpm add openapi-fetch-sveltekit
Usage
import createClient from "openapi-fetch"
import type { paths } from "../*.d.ts"
import { fetchWithCookies } from "openapi-fetch-sveltekit"
export const flickClient = createClient<paths>({
baseUrl: "",
fetch: fetchWithCookies
})