Skip to content

Commit 1833c30

Browse files
authored
Remove en page generation (#6786)
1 parent b75bc19 commit 1833c30

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

polaris.shopify.com/next.config.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ const nextConfig = {
88
experimental: {
99
scrollRestoration: true,
1010
},
11-
i18n: {
12-
locales: ["en"],
13-
defaultLocale: "en",
14-
},
1511
async headers() {
1612
return [
1713
{
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { Html, Head, Main, NextScript } from "next/document";
2+
3+
export default function Document() {
4+
return (
5+
<Html lang="en">
6+
<Head />
7+
<body>
8+
<Main />
9+
<NextScript />
10+
</body>
11+
</Html>
12+
);
13+
}

0 commit comments

Comments
 (0)