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
Note: NextJS13 app directory uses server components by default and if we want client components (which our app needs) we'll need to put "use client" on every single file. Our current app right now is hosted just a static files hosted over a cdn so by default we still can't use app directory unless we want to move towards running this on an actual server. Next.js is tightly coupled with Vercel's system so its super opinionated on using SSR.
Some things to think about:
What is the value add for us to move to SSR vs using CSR right now?
Some advantages I can think of right now:
Vercel is free! (will it be free forever?)
SEO/Page ranking
Disadvantages:
It's easier to set up just some static html/css/js files rather than fully loaded ssr
TTI (time to interactive) is slower on SSR which in our case our app is more meant to be interactive than read only
Upgrade styling to use TailwindCSS instead of MUI to:
The text was updated successfully, but these errors were encountered: