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
Let's say I have a project with multiple clients, client1.nextjs.com, client2.nextjs.com, ...etc is their portfolio website & they'll have the same layout overall, If you open the client1 portfolio for example I'll have to make fetch request to get the text/images/colors for this client including the meta tags for this portfolio, Now the question is if the client share their portfolio to the Social media, Web scrapers like Facebook, twitter, etc.. will not get the meta tags from API since they don't load JavaScript.
If I have like +10k clients, How to solve this? Is it really ideal to make +10k fetch requests on the build time?
What If each client have a sub page like /projects, Let's say on average 10 projects for each client, That's another +10k fetch requests, Also in back-end we have a dashboard so each client can change their data all the time, So I have to re-build each time client change anything.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Let's say I have a project with multiple clients,
client1.nextjs.com
,client2.nextjs.com
, ...etc is their portfolio website & they'll have the same layout overall, If you open the client1 portfolio for example I'll have to makefetch
request to get the text/images/colors for this client including the meta tags for this portfolio, Now the question is if the client share their portfolio to the Social media, Web scrapers like Facebook, twitter, etc.. will not get the meta tags from API since they don't load JavaScript.If I have like +10k clients, How to solve this? Is it really ideal to make +10k
fetch
requests on the build time?What If each client have a sub page like
/projects
, Let's say on average 10 projects for each client, That's another +10kfetch
requests, Also in back-end we have a dashboard so each client can change their data all the time, So I have to re-build each time client change anything.Is React / Next ideal for this kind of project?
Beta Was this translation helpful? Give feedback.
All reactions