We have a nuxt.js project which is an ecommerce site. We load the products page with first 100 products as SSR. after that we load other products as we needed from the client side using an API call. Now the problem is when search engine crawlers visits our website. They only can see the server renders 100 products. They don't have idea about the other products this will impact our SEO score.
How can we pre-render all the products (More than 1000) in the server side for crawlers to find. Please note that we can't remove our client API call due to performance issues and we don't have pagination as well.
How do we overcome thing challenge with Nuxt.js?