podcast-generator/client/openapi-ts.config.ts
Jake Walker 7d60654d37
All checks were successful
ci/woodpecker/push/build Pipeline was successful
frontend rewrite
2025-02-05 22:47:39 +00:00

13 lines
292 B
TypeScript

import { defaultPlugins, defineConfig } from "@hey-api/openapi-ts";
export default defineConfig({
client: "@hey-api/client-fetch",
input: {
path: "http://localhost:8000/openapi.json"
},
output: "src/client",
plugins: [
...defaultPlugins,
"@tanstack/solid-query"
]
})