Skip to content

Commit 773f4b4

Browse files
authored
Fix typo in error message
1 parent cee78ef commit 773f4b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/WebpackConfig.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -963,7 +963,7 @@ class WebpackConfig {
963963
const entryNamesOverlapMsg = 'The entry names between addEntry(), addEntries(), and addStyleEntry() must be unique.';
964964

965965
if (this.entries.has(name)) {
966-
throw new Error(`Duplicate name "${name}}" already exists as an Entrypoint. ${entryNamesOverlapMsg}`);
966+
throw new Error(`Duplicate name "${name}" already exists as an Entrypoint. ${entryNamesOverlapMsg}`);
967967
}
968968

969969
if (this.styleEntries.has(name)) {

0 commit comments

Comments
 (0)