The etag will be effectively useless because in dev mode the Cache-Control header is set to no-store, which causes Chrome to not include If-None-Match when requesting the file again.
I would suggest using no-cache instead when etag is enabled so that we can leverage 304 even in dev.
When using
The etag will be effectively useless because in dev mode the
Cache-Control
header is set tono-store
, which causes Chrome to not includeIf-None-Match
when requesting the file again.I would suggest using
no-cache
instead whenetag
is enabled so that we can leverage 304 even in dev.