mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-07 07:55:16 +02:00
11 lines
285 B
TypeScript
11 lines
285 B
TypeScript
|
|
import { defineConfig } from '@hey-api/openapi-ts';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
input: 'http://127.0.0.1:8000/api/v1/openapi.json',
|
||
|
|
output: 'src/client',
|
||
|
|
plugins: [{
|
||
|
|
name: '@hey-api/client-fetch',
|
||
|
|
runtimeConfigPath: './src/lib/apiClient.ts',
|
||
|
|
}],
|
||
|
|
});
|