mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
Merge branch 'master' of https://github.com/zeit/next.js
This commit is contained in:
commit
c037952b72
|
@ -85,8 +85,8 @@ When state, lifecycle hooks or initial data population you can export a `React.C
|
||||||
```jsx
|
```jsx
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
export default class extends React.Component {
|
export default class extends React.Component {
|
||||||
async getInitialProps ({ isServer, req }) {
|
static async getInitialProps ({ req }) {
|
||||||
return isServer
|
return req
|
||||||
? { userAgent: req.headers.userAgent }
|
? { userAgent: req.headers.userAgent }
|
||||||
: { userAgent: navigator.userAgent }
|
: { userAgent: navigator.userAgent }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue