DEV Community

Discussion on: Why Vercel & Next are a dream team

Collapse
 
kalashin1 profile image
Kinanee Samson

Next js make building web app a dream

Collapse
 
mantiq profile image
A.Z.

Indeed, it is one of the best developer experiences I had so far :D

Collapse
 
lyrod profile image
Lyrod

When you begin to use i18n or auth, this is a nightmare compare to other framework in the market

Collapse
 
powell_v2 profile image
Pavel Yermolin

Could you please elaborate why?

Thread Thread
 
lyrod profile image
Lyrod

An example for i18n, when you want to inject translation for _app, if you have a common.json, you need to inject it in all page because _app can't inject translations. Imagine you have a base template for whole website, everypage need to know which translations are used in base template...

Nextjs don't have good session management.

If you want auth, you need third party next-auth...
If you want i18n, you need third party i18next nextjs...

For server render, I came from Php Symfony. I know this is not the same thing, but I weird when you come from php things.