diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-01-29 23:38:13 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-01-29 23:38:13 +0100 |
| commit | 82d310403c4bb09bc2f0a204b6374934a10cf348 (patch) | |
| tree | 488e93e373a7d9215531bb8fcfc37bcbb290d0fa /src/utils/config.ts | |
| parent | f49dfba86b9ac745ddc374ee0f02f03d7e81d872 (diff) | |
refactor(config): move config from config dir to utils
Diffstat (limited to 'src/utils/config.ts')
| -rw-r--r-- | src/utils/config.ts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/utils/config.ts b/src/utils/config.ts new file mode 100644 index 0000000..1c227cc --- /dev/null +++ b/src/utils/config.ts @@ -0,0 +1,16 @@ +export const settings = { + name: 'Armand Philippot', + baseline: 'Front-end developer', + copyright: { + startYear: '2012', + endYear: new Date().getFullYear(), + }, + locales: { + defaultLocale: 'fr', + defaultCountry: 'FR', + supported: ['en', 'fr'], + }, + postsPerPage: 10, + twitterId: '@ArmandPhilippot', + url: process.env.NEXT_PUBLIC_FRONTEND_URL, +}; |
