We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The docs use a different format than the template to define the webpack plugin. When using the WebpackPlugin constructor, the contextIsolation option is not available and the docs state it must be set in addition to the BrowserWindow webPreferences.
WebpackPlugin
contextIsolation
const config: ForgeConfig = { makers: [new MakerDeb({}), new MakerRpm({}), new MakerSquirrel({}), new MakerZIP({}, ['darwin'])], plugins: [ new WebpackPlugin({ mainConfig, renderer: { config: rendererConfig, contextIsolation: true, // 👈 this is a TS error entryPoints: [ { html: './frontend/public/index.html', js: './frontend/src/index.tsx', name: 'main_window', preload: { config: preloadConfig, js: './electron/src/preload.ts', }, }, ], }, }), ], };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The docs use a different format than the template to define the webpack plugin. When using the
WebpackPlugin
constructor, thecontextIsolation
option is not available and the docs state it must be set in addition to the BrowserWindow webPreferences.The text was updated successfully, but these errors were encountered: