Skip to content

Commit dd4d7b7

Browse files
authored
Add reference to github discussion about the error 'The build "_default" is not configured'. (#243)
1 parent b71dadb commit dd4d7b7

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

Classes/Asset/EntrypointLookupCollection.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,10 @@ public function getEntrypointLookup(?string $buildName = null): EntrypointLookup
4141
$buildName = $this->defaultBuildName;
4242
}
4343

44-
if (! isset($this->buildEntrypoints[$buildName])) {
45-
throw new UndefinedBuildException(sprintf('The build "%s" is not configured', $buildName));
44+
if (!isset($this->buildEntrypoints[$buildName])) {
45+
throw new UndefinedBuildException(sprintf('The build "%s" is not configured. '
46+
. 'More info: https://github.com/sabbelasichon/typo3_encore/discussions/242',
47+
$buildName));
4648
}
4749

4850
return $this->buildEntrypoints[$buildName];

0 commit comments

Comments
 (0)