From 2bad598b3383f1d936d5cc9e99059e5e9b8f1561 Mon Sep 17 00:00:00 2001 From: Jared He <66887902+jaredjhe@users.noreply.github.com> Date: Sun, 19 Sep 2021 20:20:28 -0500 Subject: [PATCH] Add lang attribute to html --- pages/_document.tsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 pages/_document.tsx diff --git a/pages/_document.tsx b/pages/_document.tsx new file mode 100644 index 00000000..f65df415 --- /dev/null +++ b/pages/_document.tsx @@ -0,0 +1,18 @@ +import Document, { Html, Head, Main, NextScript } from "next/document"; +import React from "react"; + +class MyDocument extends Document { + render() { + return ( + + + +
+ + + + ); + } +} + +export default MyDocument; -- 2.39.2