Skip to content

Commit

Permalink
fix: relative path of main.preload #277
Browse files Browse the repository at this point in the history
[FIX] Relative path of main.preload was being passed leading to a webpack ERROR
  • Loading branch information
bennymeg committed Feb 17, 2024
2 parents 0d194cc + f60132f commit 9e9a6db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nx-electron/src/executors/build/executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export function executor(
)
.forEach(
(entry) =>
(config.entry[parse(entry.name).name] = join(
(config.entry[parse(entry.name).name] = resolve(
preloadFilesDirectory,
entry.name
))
Expand Down

0 comments on commit 9e9a6db

Please sign in to comment.