sweet_crm/orval.config.ts

15 lines
274 B
TypeScript
Raw Normal View History

2024-07-31 07:33:45 +00:00
import { defineConfig } from 'orval'
export default defineConfig({
cakes: {
output: {
mode: 'tags-split',
target: 'src/cakes.ts',
schemas: 'src/shared/model',
client: 'vue-query',
2024-07-31 07:38:59 +00:00
// mock: true,
2024-07-31 07:33:45 +00:00
},
input: './cakes.json',
},
})