blob: 12645a7c738f8eb92612d55d1354f4ce6bb32fb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import { t } from '@lingui/macro';
export const config = {
name: 'Armand Philippot',
baseline: t`Front-end developer`,
copyright: {
startYear: '2012',
endYear: new Date().getFullYear(),
},
locales: {
defaultLocale: 'fr',
defaultCountry: 'FR',
},
postsPerPage: 10,
url: process.env.NEXT_PUBLIC_FRONTEND_URL,
};
|