Skip to content

Commit

Permalink
Fix: dynamic parameter not working for optimized manifest (#28)
Browse files Browse the repository at this point in the history
* fix dynamic url

* fix dynamic url

* Dynamic parameter not working for optimized manifest

* Dynamic parameter not working for optimized manifest

* Dynamic parameter not working for optimized manifest

Co-authored-by: jaf2bj <[email protected]>
  • Loading branch information
janfejtek and jaf2bj authored Jan 30, 2021
1 parent ad5ba89 commit 7ec9c4b
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/DI/WebpackExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -160,13 +160,7 @@ private function setupAssetResolver(array $config): ServiceDefinition
$loader
]);
} else {
$devServerInstance = new DevServer(
$config['devServer']['enabled'],
$config['devServer']['url'] ?? '',
$config['devServer']['publicUrl'] ?? '',
$config['devServer']['timeout'],
new CurlClient()
);
$devServerInstance = new DevServer(false, '', '', 0.0, new CurlClient());

$mapperInstance = new $config['manifest']['mapper']();

Expand Down

0 comments on commit 7ec9c4b

Please sign in to comment.