Hi there, i have a route handler to get reveiws from external resources
then i use it in my client component like this
const { data, error, isLoading } = useSWR("/api/reviews/get_reviews", fetcher);
when building my app i noticed that this route handler is built as a static page
○ /api/reviews/get_reviews
Does this mean that all fetch request that are happening inside of this route handler are cached on build and then never refreshed or what?