diff --git a/packages/plugin/auto-unpack-natives/README.md b/packages/plugin/auto-unpack-natives/README.md index 7beb5fb7f9..734b5b72ef 100644 --- a/packages/plugin/auto-unpack-natives/README.md +++ b/packages/plugin/auto-unpack-natives/README.md @@ -8,7 +8,8 @@ This plugin will automatically add all native Node modules in your node_modules module.exports = { plugins: [ { - name: '@electron-forge/plugin-auto-unpack-natives' + name: '@electron-forge/plugin-auto-unpack-natives', + config: {} } ] }; diff --git a/packages/template/base/tmpl/forge.config.js b/packages/template/base/tmpl/forge.config.js index 1f0ed10115..179a35e131 100644 --- a/packages/template/base/tmpl/forge.config.js +++ b/packages/template/base/tmpl/forge.config.js @@ -24,6 +24,7 @@ module.exports = { plugins: [ { name: '@electron-forge/plugin-auto-unpack-natives', + config: {}, }, ], }; diff --git a/packages/template/webpack/tmpl/forge.config.js b/packages/template/webpack/tmpl/forge.config.js index 87bd5f6c27..6ad9269c6f 100644 --- a/packages/template/webpack/tmpl/forge.config.js +++ b/packages/template/webpack/tmpl/forge.config.js @@ -24,6 +24,7 @@ module.exports = { plugins: [ { name: '@electron-forge/plugin-auto-unpack-natives', + config: {}, }, { name: '@electron-forge/plugin-webpack',