Skip to content

Commit

Permalink
Replace all glob paths
Browse files Browse the repository at this point in the history
  • Loading branch information
TheUltDev authored Jan 2, 2024
1 parent 6b9548f commit ad93913
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ async function overrideEsbuildConfigAsync(
return buildOptions
}
if (platform() === 'win32') {
filePaths = `file://${filePaths}`;
filePaths = filePaths.map(p => `file:///${p}`);
}
const overrideEsbuildConfig:
| OverrideEsbuildConfig
Expand Down

0 comments on commit ad93913

Please sign in to comment.