Nitish Nashine
Nitish Nashine
@dennyabrain I am very eager to contribute in this project And learn new thing from this open-source project.
module.exports = { entry: { main_window: './src/renderer/main_window.ts', preload: './src/renderer/preload.ts', }, output: { filename: '[name].js', path: path.resolve(__dirname, '.webpack/renderer'), }, }; Add path of preload 
yarn add sqlite3 yarn add --dev electron-rebuild ./node_modules/.bin/electron-rebuild and Configure Electron Forge in your forge.config.js to handle native modules Add a postinstall script in your package.json to automatically rebuild for...
Electron Forge doesn't currently support Bun as a package manager - you're right that the official documentation only lists NPM and Yarn Classic as supported options. As of my knowledge,...
1. The vite-typescript template might be expecting a different version of electron. Bro check the versions make sure they are not conflicting. 2. Or There could be a configuration issue...