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.
 
 
 
 

54 lines
1.2 KiB

/* eslint valid-jsdoc: "off" */
/**
* @param {Egg.EggAppInfo} appInfo app info
*/
module.exports = appInfo => {
/**
* built-in config
* @type {Egg.EggAppConfig}
**/
const config = exports = {};
// use for cookie sign key, should change to your own and keep security
config.keys = appInfo.name + '_1708915616027_8852';
// add your middleware config here
config.middleware = [];
config.mongoose = {
client: {
url: 'mongodb://127.0.0.1:9018/back',
options: {}
}
}
config.security = {
csrf: {
// 判断是否需要 ignore 的方法,请求上下文 context 作为第一个参数
// ignore: ctx => isInnerIp(ctx.ip),
ignore: '/',
},
};
config.cors = {
// 任何地址都可以访问
origin: "*",
// 指定地址才可以访问
// origin: 'http://localhost:8080',
allowMethods: 'GET,PUT,POST,DELETE',
// cookie跨域配置
credentials: true
};
config.bodyParser = {
formLimit: "100mb",
jsonLimit: "100mb",
textLimit: "100mb",
}
// add your user config here
const userConfig = {
// myAppName: 'egg',
};
return {
...config,
...userConfig,
};
};