Hello,
I have a NextJS13 app that is trying to do dynamic rendering that performs an API call to google sheets(using it as a database) per request.
This works locally for me but it isn’t on Netlify the app does an api call only on build but not after it is deployed.
I am using a third party library and {cache} from ‘react’
import {GoogleSpreadsheet} from "google-spreadsheet";
import { cache } from 'react';
and i’ve tried defining variables
export const dynamic = 'force-dynamic'
export const revalidate = 0
export const fetchCache = 'force-no-store'
With no luck
my-site: live-tnb-dno-summit.netlify.app