Я использую npm grunt-cache-bust
для очистки стати c файлов.
У меня следующая структура папок
- app
- scripts
- app.js
- app.config.js
- controllers
- controller1.js
- controller12.js
- index.html
- Gruntfile.js
В gruntfile. js Я добавил basi c configuration
cacheBust: {
taskName: {
options: {
assets: ['dist/scripts/**'],
jsonOutput: true,
createCopies: true,
deleteOriginals: false
},
src: ['dist/index.html',]
}
}
Он перебивает файл, указанный в sr c, но не заменяет ссылку в индексе. html
Есть что-то, что я упускаю?