|
|
|
|
|
by ithrow
2250 days ago
|
|
NextJS is another alternative. To talk to a (django) API you need to go through getStaticProps and getServerSideProps which, depending on the location of your API server, can be a little slow, but you get pre-rendered HTML and page based routing so again no global state management required. The problem with this approach is that you will need to manage another server process(nodejs) besides django for server-side rendering with nextjs. |
|