Skip to content

Commit

Permalink
fix(webpack): typo for outputPath (#22734)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndcunningham authored Apr 9, 2024
1 parent c6f9301 commit f11d7be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/webpack/src/plugins/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ function normalizeOutputPath(
if (!outputPath) {
// If outputPath is undefined, use webpack's default `dist` directory.
if (projectRoot === '.') {
return `{projectRoot}/dist}`;
return `{projectRoot}/dist`;
} else {
return `{workspaceRoot}/dist/{projectRoot}`;
}
Expand Down

0 comments on commit f11d7be

Please sign in to comment.