Hi Henry,
Sorry, we were having public holidays in the past few days!
Regarding the issue, please test this for us. Please open the file packages/cloudexport/ChromeHeadlessIoService.php and replace these lines:
$this->settings = [
'html' => $html,
'resourcePatterns' => [
[
"regex" => '~((KoolReport.load.resources|KoolReport.widget.init)\([^\)]*)["\']([^"\',\)\[\]\:]+)["\']~',
"replace" => "{group1}'{group3}'",
"urlGroup" => "{group3}"
]
]
];
with these:
$this->settings = [
'html' => $html,
'resourcePatterns' => [
[
"regex" => '~((KoolReport.load.resources|KoolReport.widget.init)\([^\)]*)["\']([^"\',\)\[\]\:]+css|[^"\',\)\[\]\:]+js|css[^"\',\)\[\]\:]+|js[^"\',\)\[\]\:]+|(?![^"\',\)\[\]\:]*(css|js))[^"\',\)\[\]\:]*)["\']~',
"replace" => "{group1}'{group3}'",
"urlGroup" => "{group3}"
]
]
];
Then run cloud export again and send us any error/warning message if there is. Thanks!