From 186748ed55b243f4752402d61f9696de3f7e4f79 Mon Sep 17 00:00:00 2001 From: Jayden Seric Date: Wed, 10 Feb 2021 00:26:02 +1100 Subject: [PATCH] Configure the app locale. --- app/next.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/next.config.js b/app/next.config.js index 80f42a9..d546bd7 100644 --- a/app/next.config.js +++ b/app/next.config.js @@ -2,4 +2,8 @@ module.exports = { env: { API_URI: process.env.API_URI, }, + i18n: { + locales: ['en-US'], + defaultLocale: 'en-US', + }, };