forked from crowetic/commerce
19 lines
370 B
TypeScript
19 lines
370 B
TypeScript
import Document_, { Html, Head, Main, NextScript } from "next/document";
|
|
|
|
export default class Document extends Document_ {
|
|
render() {
|
|
return (
|
|
<Html lang="en">
|
|
<Head />
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
{/**
|
|
* Here add your GA and more scripts.
|
|
*/}
|
|
</body>
|
|
</Html>
|
|
);
|
|
}
|
|
}
|