Skip to content
Snippets Groups Projects
Commit 5698b855 authored by jurgenhaas's avatar jurgenhaas
Browse files

docker4drupal#61 Add support for asset wrapper

parent ae354336
No related branches found
No related tags found
1 merge request!128Merging develop into main
Pipeline #1162138 passed
...@@ -62,6 +62,7 @@ class Handler extends BaseHandler { ...@@ -62,6 +62,7 @@ class Handler extends BaseHandler {
'renderer_config' => [ 'renderer_config' => [
'debug' => $this->env->receiveGlobal('RENDERER_CONFIG_DEBUG', '', '0'), 'debug' => $this->env->receiveGlobal('RENDERER_CONFIG_DEBUG', '', '0'),
], ],
'file_assets_path' => FALSE,
]; ];
} }
......
...@@ -27,6 +27,9 @@ $settings['container_yamls'][] = __DIR__ . '/services.yml'; ...@@ -27,6 +27,9 @@ $settings['container_yamls'][] = __DIR__ . '/services.yml';
$settings['file_public_path'] = 'sites/default/files'; $settings['file_public_path'] = 'sites/default/files';
$settings['file_private_path'] = 'sites/default/private'; $settings['file_private_path'] = 'sites/default/private';
$settings['file_temp_path'] = '/tmp'; $settings['file_temp_path'] = '/tmp';
{% if file_assets_path %}
$settings['file_assets_path'] = '{{ file_assets_path }}';
{% endif %}
$settings['hash_salt'] = '{{ hash }}'; $settings['hash_salt'] = '{{ hash }}';
$settings['trusted_host_patterns'] = array( $settings['trusted_host_patterns'] = array(
'^{{ domain }}$', '^{{ domain }}$',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment