/* eslint valid-jsdoc: "off" */ "use strict"; /** * @param {Egg.EggAppInfo} appInfo app info */ module.exports = (appInfo) => { /** * built-in config * @type {Egg.EggAppConfig} **/ const config = (exports = {}); // use for cookie sign key, should change to your own and keep security config.keys = appInfo.name + "_1687851227654_4638"; config.cookie = ""; config.duplicateReq = 0; // add your middleware config here config.middleware = []; config.cluster = { listen: { port: 7006, }, }; // add your user config here const userConfig = { // myAppName: 'egg', }; config.cors = { //允许跨域的网址,*表示所有网址都可以跨域请求文件资源,也可以指定域名 origin: "*", allowMethods: "POST,GET", }; config.security = { csrf: { enable: false, }, }; return { ...config, ...userConfig, }; };