From 1fa8d8281371db25ef9382b6087b7f3c0db73fe3 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 19 Jan 2022 14:45:06 +0100 Subject: refactor(config): move defaultLocale as property of config.locales I will need the country code, so I think it makes more sense to gather them inside the same property. --- src/config/website.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/config/website.ts') diff --git a/src/config/website.ts b/src/config/website.ts index d8721c5..12645a7 100644 --- a/src/config/website.ts +++ b/src/config/website.ts @@ -7,7 +7,10 @@ export const config = { startYear: '2012', endYear: new Date().getFullYear(), }, - defaultLocale: 'fr', + locales: { + defaultLocale: 'fr', + defaultCountry: 'FR', + }, postsPerPage: 10, url: process.env.NEXT_PUBLIC_FRONTEND_URL, }; -- cgit v1.2.3