Skip to content

Commit

Permalink
fix: Fix electorn fuses
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertGemmaJr committed Jun 20, 2024
1 parent bfee273 commit 8ab174d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions forge.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,11 @@ export default {
version: FuseVersion.V1,
[FuseV1Options.RunAsNode]: false, // Disables ELECTRON_RUN_AS_NODE
[FuseV1Options.GrantFileProtocolExtraPrivileges]: true, // Grants the file protocol extra privileges (for the built application)
[FuseV1Options.EnableCookieEncryption]: false, // Disables cookie encryption
[FuseV1Options.EnableCookieEncryption]: true, // Disables cookie encryption
[FuseV1Options.EnableNodeOptionsEnvironmentVariable]: false, // Disables the NODE_OPTIONS environment variable
[FuseV1Options.EnableNodeCliInspectArguments]: false, // Disables the --inspect and --inspect-brk family of CLI options
[FuseV1Options.EnableEmbeddedAsarIntegrityValidation]: true, // Enforces validation of the app.asar archive on macOS
[FuseV1Options.OnlyLoadAppFromAsar]: true, // Enforces that Electron will only load your app from "app.asar" instead of its normal search paths
[FuseV1Options.LoadBrowserProcessSpecificV8Snapshot]: true, // Loads V8 Snapshot from `browser_v8_context_snapshot.bin` for the browser process
},
},
],
Expand Down

0 comments on commit 8ab174d

Please sign in to comment.