vuejs / vueify

Browserify transform for single-file Vue components
MIT License
1.17k stars 153 forks source link

Option to turn off cache busting #231

Open henrypenny opened 6 years ago

henrypenny commented 6 years ago

It would be good to be able to turn off cache busting hashes. Something like:

compiler.js line 189:

    var hashedFilename = path.basename(filePath) + '?' + hash(filePath + content)

>>>

  if(options.bustCaches === true) {
    var hashedFilename = path.basename(filePath) + '?' + hash(filePath + content)
  }