Created
March 26, 2020 07:36
-
-
Save einnar82/edcc79ec43af3c26dd30511d03dcdca9 to your computer and use it in GitHub Desktop.
Vue cache busting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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