My Yii2 assets bundles timestamp always keep updating on each page reload.
// Configuration:
'assetManager' => [
'appendTimestamp' => true,
'linkAssets' => getenv('LINK_ASSETS'),
'class' => 'yii\web\AssetManager',
'bundles' => [
'yii\web\JqueryAsset' => [
'js'=>[]
],
'yii\bootstrap\BootstrapAsset' => [
'css' => []
],
'yii\bootstrap\BootstrapPluginAsset' => [
'js' => []
]
],
],
<script src="/assets/e61789e4/yii.js?v=1500890158"></script>
<script src="/assets/e0852aa8/jquery.inputmask.bundle.js?v=1500890158"></script>
On page reload:
<script src="/assets/e61789e4/yii.js?v=1500890675"></script>
<script src="/assets/e0852aa8/jquery.inputmask.bundle.js?v=1500890676"></script>
How can I get keep them static? Sorry for my english.