So I tested my site https://jamiecropley.ai here https://tools.pingdom.com/#64523c7cff000000 and it says expires headers and gzip is not being picked up on my site, and I can't find it in inspector in Chrome browser either the following information from my vercel.json file:
{ "headers": [ { "source": "/(.*)\\.(jpg|jpeg|png|gif|ico|svg)$", "headers": [ { "key": "Cache-Control", "value": "public, max-age=31536000, immutable" } ] }, { "source": "/(.*)\\.(css|js)$", "headers": [ { "key": "Cache-Control", "value": "public, max-age=2592000" }, { "key": "Content-Encoding", "value": "gzip" } ] }, { "source": "/(.*)\\.(html)$", "headers": [ { "key": "Cache-Control", "value": "public, max-age=604800" }, { "key": "Content-Encoding", "value": "gzip" } ] } ]}Firstly, is my vercel.json file correct? Can I trust what that site is saying? How can I validate my vercel.json file overall in respect of gzip and Expires headers?