8 lines
340 B
TypeScript
8 lines
340 B
TypeScript
import type { GenerateServiceProps } from 'openapi-ts-request';
|
|
|
|
export default {
|
|
schemaPath: 'http://localhost:5005/swagger/Default/swagger.json', // swagger.json 文件路径
|
|
serversPath: './src/apis', // 接口文件路径
|
|
requestLibPath: 'import request from "/@/utils/axios-utils"', // 请求方法路径
|
|
} as GenerateServiceProps;
|