-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnext.config.js
More file actions
38 lines (38 loc) · 810 Bytes
/
next.config.js
File metadata and controls
38 lines (38 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/** @type {import('next').NextConfig} */
module.exports = {
reactStrictMode: true,
experimental: {
esmExternals: false,
},
i18n: {
locales: ['en'],
defaultLocale: 'en',
},
images: {
formats: ['image/avif', 'image/webp'],
},
async redirects() {
return [
{
source: '/github',
destination: 'https://github.com/imteekay',
permanent: false,
},
{
source: '/linkedin',
destination: 'https://www.linkedin.com/in/imtk',
permanent: false,
},
{
source: '/twitter',
destination: 'https://twitter.com/wordsofteekay',
permanent: false,
},
{
source: '/newsletter',
destination: 'https://teekay.substack.com',
permanent: false,
},
];
},
};