1234567891011121314151617181920212223242526272829303132 |
- import { EggAppConfig, EggAppInfo, PowerPartial } from 'egg';
- export default (appInfo: EggAppInfo) => {
- const config = {} as PowerPartial<EggAppConfig>;
- // override config from framework / plugin
- // use for cookie sign key, should change to your own and keep security
- config.keys = appInfo.name + '_1566957124398_592';
- // add your egg config in here
- config.middleware = [ 'auth' ];
- // 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,
- // close csrf check
- security: {
- csrf: {
- enable: false,
- },
- },
- app: {
- checkUpdateInterval: 6, // minute
- },
- };
- };
|