()
| 10 | |
| 11 | class Document extends NextDocument<CustomDocumentProps> { |
| 12 | render() { |
| 13 | const { nonce } = this.props; |
| 14 | |
| 15 | return ( |
| 16 | <Html lang="en"> |
| 17 | <Head nonce={nonce} /> |
| 18 | <body> |
| 19 | <Main /> |
| 20 | <NextScript nonce={nonce} /> |
| 21 | </body> |
| 22 | </Html> |
| 23 | ); |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | // This config is pulled from the official Nextjs + MUI example |
no outgoing calls
no test coverage detected