mirror of
https://gitee.com/dromara/electron-egg.git
synced 2026-06-17 05:41:44 +08:00
16 lines
262 B
JavaScript
16 lines
262 B
JavaScript
/**
|
|
* 加密配置
|
|
*/
|
|
module.exports = {
|
|
type: 'confusion',
|
|
directory: [
|
|
'electron'
|
|
],
|
|
fileExt: ['.js'],
|
|
confusionOptions: {
|
|
compact: true,
|
|
stringArray: true,
|
|
stringArrayEncoding: ['base64'],
|
|
deadCodeInjection: false,
|
|
}
|
|
}; |