17 lines
296 B
TypeScript
17 lines
296 B
TypeScript
import Document, { Html, Head, Main, NextScript } from 'next/document';
|
|
|
|
export default class MyDocument extends Document {
|
|
render() {
|
|
return (
|
|
<Html lang="zh-CN">
|
|
<Head />
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
);
|
|
}
|
|
}
|
|
|