Added lang to next.config

This commit is contained in:
Neshura 2022-12-11 17:32:01 +01:00
parent dbf11d931e
commit 450141fde9
No known key found for this signature in database
GPG key ID: ACDF5B6EBECF6B0A

View file

@ -1,6 +1,10 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
i18n: {
locales: ["en"],
defaultLocale: "en",
},
reactStrictMode: true,
output: 'standalone',
};