I don't understand fetch caching. When I write in a server component
const getData = async () => {
const data = await fetch('http://worldtimeapi.org/api/timezone/Asia/Taipei')
return data.json()
}
export default async function Home() {
const data = await getData()
const time = data.datetime
I thought every time I run npm run build I will get a new time. Instead I always get the same value.
Where is this being cached and how can i inspect this cache.