diff --git a/templates/webpack-template.md b/templates/webpack-template.md index b44fc5c..6dc800d 100644 --- a/templates/webpack-template.md +++ b/templates/webpack-template.md @@ -11,3 +11,7 @@ npx create-electron-app@latest my-new-app --template=webpack ``` Once you've initialized the template, you'll need to run `npm start` in the generated directory. See the [Webpack Plugin](../config/plugins/webpack.md) documentation for Electron Forge-specific configuration options. + +{% hint style="warning" %} +Executing `npm start` immediately after creating the app will reliably produce two errors due to [an issue with electron](https://github.com/electron/electron/issues/41614)that is currently marked as "wontfix." A temporary fix for one of the errors can be performed by commenting out line 23 (`mainWindow.webContents.openDevTools()`) until you have found a solution that is appropriate with your specific app. +{% endhint %} \ No newline at end of file