Is getInitialProps deprecated? #17015
-
Is getInitialProps deprecated? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
No, Example: if you're only fetching data on the server-side, Hope this helps clarify! |
Beta Was this translation helpful? Give feedback.
No,
getInitialProps
is not deprecated. The reason the documentation recommends usinggetStaticProps
/getServerSideProps
is because allows you fall into the pit of success.Example: if you're only fetching data on the server-side,
getServerSideProps
helps you do the right thing by not including that code in the client-side bundle. Smaller bundle === faster page load times.Hope this helps clarify!