mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-02-06 11:40:28 -05:00
17 lines
426 B
TypeScript
17 lines
426 B
TypeScript
const config = [
|
|
{
|
|
requestLibPath: "import request from '@/utils/request';",
|
|
schemaPath: 'https://docs.ppanel.dev/swagger/common.json',
|
|
serversPath: './services',
|
|
projectName: 'common',
|
|
},
|
|
{
|
|
requestLibPath: "import request from '@/utils/request';",
|
|
schemaPath: 'https://docs.ppanel.dev/swagger/admin.json',
|
|
serversPath: './services',
|
|
projectName: 'admin',
|
|
},
|
|
];
|
|
|
|
export default config;
|