There was an error while loading. Please reload this page.
1 parent b71dadb commit dd4d7b7Copy full SHA for dd4d7b7
1 file changed
Classes/Asset/EntrypointLookupCollection.php
@@ -41,8 +41,10 @@ public function getEntrypointLookup(?string $buildName = null): EntrypointLookup
41
$buildName = $this->defaultBuildName;
42
}
43
44
- if (! isset($this->buildEntrypoints[$buildName])) {
45
- throw new UndefinedBuildException(sprintf('The build "%s" is not configured', $buildName));
+ if (!isset($this->buildEntrypoints[$buildName])) {
+ throw new UndefinedBuildException(sprintf('The build "%s" is not configured. '
46
+ . 'More info: https://github.com/sabbelasichon/typo3_encore/discussions/242',
47
+ $buildName));
48
49
50
return $this->buildEntrypoints[$buildName];
0 commit comments