mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-02-06 03:30:25 -05:00
19 lines
554 B
TypeScript
19 lines
554 B
TypeScript
const config = [
|
|
{
|
|
requestLibPath: "import request from '@/utils/request';",
|
|
schemaPath:
|
|
'https://raw.githubusercontent.com/perfect-panel/ppanel-docs/refs/heads/main/public/swagger/common.json',
|
|
serversPath: './services',
|
|
projectName: 'common',
|
|
},
|
|
{
|
|
requestLibPath: "import request from '@/utils/request';",
|
|
schemaPath:
|
|
'https://raw.githubusercontent.com/perfect-panel/ppanel-docs/refs/heads/main/public/swagger/user.json',
|
|
serversPath: './services',
|
|
projectName: 'user',
|
|
},
|
|
];
|
|
|
|
export default config;
|