Skip to content

Instantly share code, notes, and snippets.

@einnar82
Created March 26, 2020 07:36
Show Gist options
  • Save einnar82/edcc79ec43af3c26dd30511d03dcdca9 to your computer and use it in GitHub Desktop.
Save einnar82/edcc79ec43af3c26dd30511d03dcdca9 to your computer and use it in GitHub Desktop.
Vue cache busting
module.exports = {
"transpileDependencies": [
"vuetify"
],
chainWebpack: config => {
config.plugin('html').tap(args => {
args[0].hash = true
return args
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment