Skip to content

Commit 16d893c

Browse files
Zexiclaude
authored andcommitted
fix: correct extraResources path for web-dist bundling
../../app/dist from packages/desktop resolved to the repo parent directory (nonexistent). The correct relative path is ../app/dist which resolves to packages/app/dist. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 2e053ee commit 16d893c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/desktop/electron-builder.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const getBase = (): Configuration => ({
3939
files: ["out/**/*", "resources/**/*"],
4040
extraResources: [
4141
{
42-
from: "../../app/dist",
42+
from: "../app/dist",
4343
to: "web-dist",
4444
},
4545
{

0 commit comments

Comments
 (0)