mirror of
https://github.com/apgzs/cool-admin-api.git
synced 2025-04-05 11:18:39 +08:00
19 lines
304 B
TypeScript
19 lines
304 B
TypeScript
import { EggPlugin } from 'egg';
|
|
|
|
const plugin: EggPlugin = {
|
|
typeorm: {
|
|
enable: true,
|
|
package: 'egg-ts-typeorm',
|
|
},
|
|
jwt: {
|
|
enable: true,
|
|
package: 'egg-jwt',
|
|
},
|
|
oss: {
|
|
enable: true,
|
|
package: 'egg-oss',
|
|
},
|
|
};
|
|
|
|
export default plugin;
|