Skip to content

Commit e0d0203

Browse files
committed
Fix darwin path typo
1 parent 0f191da commit e0d0203

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

forge.config.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@ const config: ForgeConfig = {
4343
} else if (platform === "darwin") {
4444
removeNextjsModules(
4545
electronModules,
46-
path.join(extractPath, "resources/app/node_modules"),
46+
path.join(
47+
extractPath,
48+
"chisel-editor.app/Contents/Resources/app/node_modules",
49+
),
4750
);
4851
} else if (platform === "linux") {
4952
removeNextjsModules(

0 commit comments

Comments
 (0)