I have a nextjs application that contains some pages that are using ISR and they update their data using some API calls when they are generated. This app is deployed on AWS Amplify. So when the deployment occurs it shows the pages generated and the ISR for each page as 86400 seconds.
Now the problem is that even though the revalidate time is of 24 hours these pages are getting generated every 30 seconds as I can see the server is getting requests of the APIs (integrated on these pages) every 30 seconds in the same series continuously in a loop which should have been once in every 24 hours.
So I want to know if there is some issue with amplify configuration or build settings of next that is causing this as I couldn't find anything related anywhere.