-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnext.config.js
56 lines (56 loc) · 1.34 KB
/
next.config.js
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
module.exports = {
reactStrictMode: true,
poweredByHeader: false,
images: {
domains: ['skillicons.dev', 'i.scdn.co', 'http.cat', 'www.udemy.com'],
},
i18n: {
locales: ['en'],
defaultLocale: 'en',
},
async redirects() {
return [
{
source: '/github',
destination: 'https://github.com/vaishnav-mk',
permanent: true,
},
{
source: '/twitter',
destination: 'https://twitter.com/Vaishna07767409',
permanent: true,
},
{
source: '/mail',
destination: 'mailto:[email protected]',
permanent: true,
},
{
source: '/hackerrank',
destination: 'https://hackerrank.com/vaishnavmanoj',
permanent: true,
},
{
source: '/linkedin',
destination: 'https://www.linkedin.com/in/vaishnav-mk/',
permanent: true,
},
{
source: '/leetcode',
destination: 'https://leetcode.com/vaishnavmanoj/',
permanent: true,
},
{
source: '/view-resume',
destination:
'https://drive.google.com/file/d/1UJ-wExAAq4eZbCbw2TwrrVvAHMM5uP3a/view?usp=sharing',
permanent: true,
},
{
source: '/secret',
destination: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
permanent: true,
},
]
},
}