mirror of
https://gitee.com/dromara/electron-egg.git
synced 2026-05-14 19:52:10 +08:00
16 lines
225 B
JavaScript
16 lines
225 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Development environment configuration, coverage config.default.js
|
|
*/
|
|
module.exports = () => {
|
|
return {
|
|
openDevTools: {
|
|
mode: 'bottom'
|
|
},
|
|
jobs: {
|
|
messageLog: true
|
|
}
|
|
};
|
|
};
|