You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
433 B
30 lines
433 B
8 months ago
|
"use strict";
|
||
|
/** @type Egg.EggPlugin */
|
||
|
module.exports = {
|
||
|
// had enabled by egg
|
||
|
// static: {
|
||
|
// enable: true,
|
||
|
// }
|
||
|
|
||
|
jwt: {
|
||
|
enable: true,
|
||
|
package: 'egg-jwt',
|
||
|
},
|
||
|
mongoose: {
|
||
|
enable: true,
|
||
|
package: "egg-mongoose",
|
||
|
},
|
||
|
validate: {
|
||
|
enable: true,
|
||
|
package: 'egg-validate',
|
||
|
},
|
||
|
udp: {
|
||
|
enable: true,
|
||
|
package: 'egg-udp',
|
||
|
},
|
||
|
cors: {
|
||
|
enable: true,
|
||
|
package: 'egg-cors',
|
||
|
},
|
||
|
};
|