You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm building a Feed Reader using NextJS and I'm getting this error in the console when I build the app. I'm listing only 10-12 feeds from the website. Is there any way I can limit the parser to only 10?
The text was updated successfully, but these errors were encountered:
This needs to be done within your getStaticProps function. Specify the exact data that you need returned for your page. For example if you only need an article title and 250 characters of text then specify that within your return statement.
If you are returning the entire RSS feed in your getStaticProps function then this error will be thrown.
I'm building a Feed Reader using NextJS and I'm getting this error in the console when I build the app. I'm listing only 10-12 feeds from the website. Is there any way I can limit the parser to only 10?
The text was updated successfully, but these errors were encountered: