升级electron egg脚手架版本

This commit is contained in:
2025-10-15 14:12:24 +08:00
parent ca8f173394
commit 081a77ac4c
54 changed files with 1756 additions and 1077 deletions

View File

@@ -1,31 +1,13 @@
'use strict';
/**
* 开发环境配置,覆盖 config.default.js
* Development environment configuration, coverage config.default.js
*/
module.exports = (appInfo) => {
const config = {};
/**
* 开发者工具
*/
config.openDevTools = {
mode: 'undocked'
};
/**
* 应用程序顶部菜单
*/
config.openAppMenu = false;
/**
* jobs
*/
config.jobs = {
messageLog: true
};
module.exports = () => {
return {
...config
openDevTools: false,
jobs: {
messageLog: false
}
};
};