language-learning-app/frontend/openapi-ts.config.ts

15 lines
278 B
TypeScript
Raw Permalink Normal View History

2026-03-23 07:17:46 +00:00
import { defineConfig } from '@hey-api/openapi-ts';
export default defineConfig({
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
});