summaryrefslogtreecommitdiffstats
path: root/src/utils/config.ts
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-01-30 00:00:19 +0100
committerArmand Philippot <git@armandphilippot.com>2022-01-30 00:00:19 +0100
commitfbd74df78e8c5a1d9c41f52c726fdc5870cbc069 (patch)
tree476a019dc0ad9eac22d53094b3423e0fc33a60c0 /src/utils/config.ts
parent82d310403c4bb09bc2f0a204b6374934a10cf348 (diff)
chore(baseline): handle baseline translation manually
I cannot use formatjs to translate the website baseline since I need an async function to load the message. If I use the getIntlInstance helper outside NextJS, webpack is complaining about fs and path.
Diffstat (limited to 'src/utils/config.ts')
-rw-r--r--src/utils/config.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/utils/config.ts b/src/utils/config.ts
index 1c227cc..dc009d9 100644
--- a/src/utils/config.ts
+++ b/src/utils/config.ts
@@ -1,6 +1,9 @@
export const settings = {
name: 'Armand Philippot',
- baseline: 'Front-end developer',
+ baseline: {
+ en: 'Front-end developer',
+ fr: 'Intégrateur web',
+ },
copyright: {
startYear: '2012',
endYear: new Date().getFullYear(),