Files
electron-egg/electron/config/encrypt.js
2023-03-08 17:00:08 +08:00

16 lines
259 B
JavaScript

/**
* 加密配置
*/
module.exports = {
type: 'bytecode',
directory: [
'electron'
],
fileExt: ['.js'],
confusionOptions: {
compact: true,
stringArray: true,
stringArrayEncoding: ['none'],
deadCodeInjection: false,
}
};