In a project on Yii2, you need to integrate a pseudo version into the CSS and JS download URLs. In the example below, v-1.2 is an automatically substituted arbitrary value.

<script src="/js/lib/v-1.2/jquery.min.js"></script> 

This is to provide caching bypass on the client side.

    1 answer 1

    From version 2.0.3:

     return [ // ... 'components' => [ 'assetManager' => [ 'appendTimestamp' => true, ], ], ]; 

    A source