mirror of
https://gitee.com/dromara/electron-egg.git
synced 2026-05-14 19:52:10 +08:00
16 lines
259 B
JavaScript
16 lines
259 B
JavaScript
/**
|
|
* 加密配置
|
|
*/
|
|
module.exports = {
|
|
type: 'bytecode',
|
|
directory: [
|
|
'electron'
|
|
],
|
|
fileExt: ['.js'],
|
|
confusionOptions: {
|
|
compact: true,
|
|
stringArray: true,
|
|
stringArrayEncoding: ['none'],
|
|
deadCodeInjection: false,
|
|
}
|
|
}; |