You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This makes it possible to use AssetMapper with `http_client` disabled on the framework.
Example:
```php
$configurator->extension(
'framework',
[
'http_client' => [
'enabled' => false,
],
'asset_mapper' => [
'paths' => [
'assets/',
],
],
]
);
```
0 commit comments