13 lines
296 B
TypeScript
13 lines
296 B
TypeScript
import { defineConfig } from "@hey-api/openapi-ts";
|
|
|
|
export default defineConfig({
|
|
input: "http://localhost:8000/openapi.json",
|
|
output: "src/client",
|
|
plugins: [
|
|
"@hey-api/client-axios",
|
|
"@hey-api/client-next",
|
|
"@tanstack/react-query",
|
|
"zod"
|
|
],
|
|
});
|