Open
Description
We're using Puli to have some sort of asset mapping of assets produced by Webpack, it looks like this;
{
"/app/style/js/modernizr.js" : "js/modernizr-4ea3c5271307e0573488.min.js",
"/app/style/js/scripts.js" : "js/scripts-4ea3c5271307e0573488.min.js"
}
Now I would like to generate an url for the assets in our twig templates like this;
<script src="{{ resource_url('/app/style/js/scripts.min.js') }}">
But the generated url is http://localhost:8888/js/scripts.js
where I expected http://localhost:8888/js/scripts-4ea3c5271307e0573488.min.js
.
Is such setup possible with Puli?