I have a Polymer webapp initially scaffolded using Yeoman and then deployed to Heroku with the simple following web.coffe script:
gzippo = require 'gzippo'
express = require 'express'
morgan = require 'morgan'
app = express()
app.use morgan('dev')
app.use gzippo.staticGzip "#{__dirname}/dist"
app.listen process.env.PORT || 5000
The problem I am facing is that (at least in Chrome and Safari) every time I deploy a new version I have to clear the browser cache and data to see the changes. Refreshing the page multiple times does not work. However with my local grunt server changes happen as expected in the browser UI.
Where can I start inspecting this kind of problem?