Builder Cacheing Issues?

Hello @josh,

You can try using cacheSeconds and cachebust option with your builder.get call and see if that helps

import { builder } from "@builder.io/react";

// replace model with your model name
const entry = await builder.get('my-model-name', {
  cacheSeconds: 10,
  cachebust: true,
})