import {EggAppConfig, EggAppInfo, PowerPartial} from 'egg'; export default (appInfo: EggAppInfo) => { const config = {} as PowerPartial; // override config from framework / plugin // use for cookie sign key, should change to your own and keep security config.keys = appInfo.name + '_1629636974750_6973'; // add your egg config in here config.middleware = []; // add your special config in here const bizConfig = { sourceUrl: `https://github.com/eggjs/examples/tree/master/${appInfo.name}` }; // the return config will combines to EggAppConfig return { ...config, ...bizConfig, security: { csrf: { enable: false // 关闭框架默认得csrf插件 否则post请求会不通 } }, // 使用中间件 middleware: ['inspectBody'] }; };