Compressor
Compressor copied to clipboard
Wrong Path in Multilanguage / Multienviroment Setup
When i use a Multilanguage / Multienviroment Setup like this:
return array(
'*' => array(
'devMode' => false,
'limitAutoSlugsToAscii' => true,
'convertFilenamesToAscii' => true,
'enableTemplateCaching' => false,
'defaultSearchTermOptions' => array(
'subLeft' => true,
'subRight' => true,
),
),
'delico.tkftest.ch' => array(
'siteUrl' => array(
'de' => 'http://delico.tkftest.ch/',
'fr' => 'http://delico.tkftest.ch/fr/',
'en' => 'http://delico.tkftest.ch/en/',
),
),
'delico.staging.tkftest.ch' => array(
'siteUrl' => array(
'de' => 'http://delico.staging.tkftest.ch/',
'fr' => 'http://delico.staging.tkftest.ch/fr/',
'en' => 'http://delico.staging.tkftest.ch/en/',
),
),
);
Compressor try's to find the file at the corresponding Url not the absolute Path eg:
In French : http://delico.staging.tkftest.ch/fr/assetpath
I have the same problem. A config option to switch to absolute urls, excluding the siteUrl would be great.
Not working on domain-based multilingual site either.