2026-03-23 07:17:46 +00:00
|
|
|
import { defineConfig } from '@hey-api/openapi-ts';
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
2026-04-17 06:42:34 +00:00
|
|
|
input: './docs/openapi.json', // sign up at app.heyapi.dev
|
|
|
|
|
output: {
|
|
|
|
|
path: 'src/client'
|
|
|
|
|
},
|
|
|
|
|
plugins: [
|
|
|
|
|
{
|
|
|
|
|
name: '@hey-api/client-fetch',
|
|
|
|
|
runtimeConfigPath: '../hey-api.ts'
|
|
|
|
|
}
|
|
|
|
|
]
|
2026-03-23 07:17:46 +00:00
|
|
|
});
|