- Reorganize project structure with new electron and shared directories - Add comprehensive i18n support with Chinese, English, and Japanese locales - Update build configurations and TypeScript paths for new structure - Add various UI components including chat interface and task management - Include Windows release binaries and localization files - Update dependencies and fix import paths throughout the codebase
15 lines
367 B
TypeScript
15 lines
367 B
TypeScript
import type { GenerateServiceProps } from 'openapi-ts-request'
|
|
|
|
export default [
|
|
{
|
|
serversPath: './src/api',
|
|
requestLibPath: '@utils/request',
|
|
isTranslateToEnglishTag: true,
|
|
apifoxConfig: {
|
|
projectId: process.env.APIFOX_PROJECT_ID || '6424418',
|
|
apifoxToken: process.env.APIFOX_ACCESS_TOKEN || ''
|
|
},
|
|
},
|
|
] as GenerateServiceProps[]
|
|
|