diff options
| author | Kevin Hoerr <kjhoerr@protonmail.com> | 2022-11-28 19:28:34 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-28 19:28:34 -0500 |
| commit | 709ee2fd2a9d7899e5b2056535a622f1ab206e1b (patch) | |
| tree | 1f73fe02e757d3a18eb1d00a79deb113b1f2d955 /gatsby-config.ts | |
| parent | dba31d2251a36a08b255d280317a830ff63e19b4 (diff) | |
| download | submelon.dev-709ee2fd2a9d7899e5b2056535a622f1ab206e1b.tar.gz submelon.dev-709ee2fd2a9d7899e5b2056535a622f1ab206e1b.tar.bz2 submelon.dev-709ee2fd2a9d7899e5b2056535a622f1ab206e1b.zip | |
Add lang attribute to html (#26)
Diffstat (limited to 'gatsby-config.ts')
| -rw-r--r-- | gatsby-config.ts | 6 |
1 files changed, 6 insertions, 0 deletions
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", + }, + }, ], }; |
