HI
How can I bundle different assets in vary pages according to Combine and Compression ?
I have JS libraries which conflict each other and I can’t load them together in a page.
For example I need to have:
example.com/backend/article/create
<head>
<link href="/example.com/backend/web/css/lib1-{hash}.css" rel="stylesheet">
</head>
example.com/backend/article/update
<head>
<link href="/example.com/backend/web/css/lib2-{hash}.css" rel="stylesheet">
</head>