config.default.js 279 B

12345678910111213
  1. 'use strict';
  2. module.exports = appInfo => {
  3. const config = exports = {};
  4. // use for cookie sign key, should change to your own and keep security
  5. config.keys = appInfo.name + '_1517455121740_7922';
  6. // add your config here
  7. config.middleware = [];
  8. return config;
  9. };