This repository was archived by the owner on Jun 10, 2025. It is now read-only.

Description
The Gobble dev server doesn't set any cache-control headers, which can lead to browsers caching content during development (and some related head-scratching about why the latest changes aren't showing up). Should be easy to fix by adding something like the following to all the server responses:
response.setHeader( 'Cache-Control', 'no-cache' );