Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

_document getInitialProps req is undefined

Accessing getInitialProps req & res in next js custom _document:

	Add this to index.js :
    	export async function getServerSideProps() {
          const data = "myData";
          return { props: { data } };
        }
    Then It's gonna working...
Have Fun ;)
 
PREVIOUS NEXT
Tagged: #getInitialProps #req #undefined
ADD COMMENT
Topic
Name
6+6 =