import Document, { Html, Head, Main, NextScript } from 'next/document' import BLOG from '@/blog.config' import ThirdPartyScript from '@/components/ThirdPartyScript' class MyDocument extends Document { static async getInitialProps (ctx) { const initialProps = await Document.getInitialProps(ctx) return { ...initialProps } } render () { return ( {BLOG.seo.googleSiteVerification && ( )} {BLOG.seo.keywords && ( )}
) } } export default MyDocument