refs #3971 Webpack assets fix
gitea/hedera-web/pipeline/head This commit looks good Details

This commit is contained in:
Juan Ferrer 2022-11-18 01:14:23 +01:00
parent 339f885d1b
commit ece21bb929
3 changed files with 3 additions and 3 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
hedera-web (22.46.3) stable; urgency=low
hedera-web (22.46.4) stable; urgency=low
* Initial Release.

View File

@ -1,6 +1,6 @@
{
"name": "hedera-web",
"version": "22.46.3",
"version": "22.46.4",
"description": "Verdnatura web page",
"license": "GPL-3.0",
"repository": {

View File

@ -45,7 +45,7 @@ function getWebpackAssets() {
function addAssets(&$jsFiles, $assets) {
foreach ($assets->js as $asset)
if (!str_starts_with($asset, 'chunk.'))
if (strpos($asset, 'chunk.') !== 0)
$jsFiles[] = $serverPath.$asset;
}