1234567891011121314151617181920212223 |
- 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 + '_1687254724720_1708';
- // 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,
- };
- };
|