From 58e4a118a6857303f3ae3ef1f2e3fe97c305ca94 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Mon, 19 Dec 2022 10:08:58 -0800 Subject: [PATCH] Add custom document in order to support lang attr on html. Closes #2445 --- web/pages/_document.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 web/pages/_document.tsx diff --git a/web/pages/_document.tsx b/web/pages/_document.tsx new file mode 100644 index 000000000..e1e9cbbb7 --- /dev/null +++ b/web/pages/_document.tsx @@ -0,0 +1,13 @@ +import { Html, Head, Main, NextScript } from 'next/document'; + +export default function Document() { + return ( + + + +
+ + + + ); +}