From 450141fde916b8124e6a8f73a361f209b4c6bb85 Mon Sep 17 00:00:00 2001 From: Neshura Date: Sun, 11 Dec 2022 17:32:01 +0100 Subject: [PATCH] Added lang to next.config --- next.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/next.config.js b/next.config.js index 2e4ef34..f804348 100644 --- a/next.config.js +++ b/next.config.js @@ -1,6 +1,10 @@ /** @type {import('next').NextConfig} */ const nextConfig = { + i18n: { + locales: ["en"], + defaultLocale: "en", + }, reactStrictMode: true, output: 'standalone', };