-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
63 lines (62 loc) · 1.64 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
57
58
59
60
61
62
63
/** @type {import('next').NextConfig} */
const nextConfig = {
async redirects() {
return [
{
source: '/cv',
destination: 'https://drive.google.com/file/d/1McR_39pYOTGulNyPurmNGKxBVZrl-BNa/view?usp=sharing',
permanent: false,
basePath: false,
},
{
source: '/cv-ats',
destination: 'https://docs.google.com/document/d/1RuTf_ePkQRqBfHIypedJ61H3eA6SDSzxz3z0K_YJgkY/edit?usp=sharing',
permanent: false,
basePath: false,
},
{
source: '/call',
destination: 'https://calendar.app.google/goMJBGQoPiH1jY5V9',
permanent: false,
basePath: false,
},
{
source: '/message',
destination: 'https://forms.gle/MwpUZgpCzjuMxAGo6',
permanent: false,
basePath: false,
},
{
source: '/projects',
destination: 'https://www.linkedin.com/in/ramirodlp/details/projects/',
permanent: false,
basePath: false,
},
{
source: '/linkedin',
destination: 'https://www.linkedin.com/in/ramirodlp/',
permanent: false,
basePath: false,
},
{
source: '/github',
destination: 'https://github.com/RamProg',
permanent: false,
basePath: false,
},
{
source: '/stackoverflow',
destination: 'https://stackoverflow.com/users/13844309/ramaprog',
permanent: false,
basePath: false,
},
{
source: '/medium',
destination: 'https://medium.com/@ramirodlp',
permanent: false,
basePath: false,
},
];
},
};
module.exports = nextConfig;