score:0

if you are using chrome or chromium, open up the developer tools, and make sure that the disable cache checkbox is turned on in the network tab. this way, the browser will ignore the cache while the developer tools window is open.

alternatively, you could append a hash string to the name of the generated bundle. assuming you're using webpack, you could add this to your build config (just an example):

output: {
  path: ...,
  filename: '[name]-[hash].js'
}

Related Query

More Query from same tag