From 709ee2fd2a9d7899e5b2056535a622f1ab206e1b Mon Sep 17 00:00:00 2001 From: Kevin Hoerr Date: Mon, 28 Nov 2022 19:28:34 -0500 Subject: Add lang attribute to html (#26) --- gatsby-config.ts | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'gatsby-config.ts') diff --git a/gatsby-config.ts b/gatsby-config.ts index 670bcf5..b9cbe51 100644 --- a/gatsby-config.ts +++ b/gatsby-config.ts @@ -48,5 +48,11 @@ module.exports = { }, __key: "pages", }, + { + resolve: "gatsby-plugin-html-attributes", + options: { + lang: "en", + }, + }, ], }; -- cgit