1234567891011121314151617181920212223242526272829303132 |
- /* eslint valid-jsdoc: "off" */
- 'use strict';
- /**
- * @param {Egg.EggAppInfo} appInfo app info
- */
- module.exports = appInfo => {
- /**
- * built-in config
- * @type {Egg.EggAppConfig}
- **/
- const config = exports = {
- baseUrl: 'http://106.15.121.64/server',
- };
- // use for cookie sign key, should change to your own and keep security
- config.keys = appInfo.name + '_1586587199716_572';
- // add your middleware config here
- config.middleware = [];
- // add your user config here
- const userConfig = {
- // myAppName: 'egg',
- };
- return {
- ...config,
- ...userConfig,
- };
- };
|