IN AssetContainer.php
$type = (pathinfo($source, PATHINFO_EXTENSION) == 'css') ? 'style' : 'script';
This line is causing issue if i pass version in source.
Is there anyway to add versioning to asstes in Facuz.
Is there anyway i can achive versioning like below.
$asset->themePath()->add([
['style', 'css/style.css?v=6666666'],
['script', 'js/script.js?v=888888']
]);
IN AssetContainer.php
$type = (pathinfo($source, PATHINFO_EXTENSION) == 'css') ? 'style' : 'script';
This line is causing issue if i pass version in source.
Is there anyway to add versioning to asstes in Facuz.
Is there anyway i can achive versioning like below.
$asset->themePath()->add([
['style', 'css/style.css?v=6666666'],
['script', 'js/script.js?v=888888']
]);