Skip to content

Instantly share code, notes, and snippets.

View Ross-Hunter's full-sized avatar

Ross-Hunter Ross-Hunter

View GitHub Profile
@computercam
computercam / vue.config.js
Created August 13, 2018 19:31
Vue CLI 3 Webpack cache busting
module.exports = {
chainWebpack: config => {
config.plugin('html').tap(args => {
args[0].hash = true
return args
})
}
}