composer require fffunction/twig-static
Add the filter to Twig:
$twig->addFilter('static', new Twig_Filter_Function(
create_static_filter('path/to/assets/', '/url/to/prepend/')
));
Then pass paths to the filter in your templates:
{{ 'js/app.bundle.js' | static }}
{# /url/to/prepend/js/app.bundle.js?v=1a2b3c4 #}
create_static_filter(sting $asset_root, string $asset_url): function
$asset_root
: a relative path from the app root to the assets root dir$asset_url
: a path to prepend to the returned url