From 80a9558c5da4fe7e5268bd280c4f18803802d58c Mon Sep 17 00:00:00 2001 From: Jan-Henrik Bruhn Date: Sun, 7 Dec 2025 22:52:16 +0100 Subject: [PATCH] Fix Electron Forge packaging error on macOS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove extraResource configuration that was trying to copy non-existent dist/assets directory. The Vite plugin handles all assets automatically. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- forge.config.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/forge.config.js b/forge.config.js index eb30067..461cc50 100644 --- a/forge.config.js +++ b/forge.config.js @@ -1,11 +1,6 @@ -const path = require('path'); - module.exports = { packagerConfig: { asar: true, - extraResource: [ - path.join(__dirname, 'dist', 'assets'), - ], }, rebuildConfig: {}, makers: [