| 12345678910111213141516171819 |
- // Electron 应用配置
- module.exports = {
- // 窗口配置
- window: {
- width: 800,
- height: 600,
- autoHideMenuBar: true, // 隐藏菜单栏(File、Edit、View、Window、Help)
- },
-
- // 开发工具配置
- devTools: {
- enabled: false, // 是否显示调试侧边栏(DevTools)
- },
- // Python 路径配置
- pythonPath: {
- path: 'D:\\Program\\Python312' // Python 安装路径
- }
- }
|