-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
36 lines (36 loc) · 1.07 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
module.exports = {
async redirects() {
return [
{
source: '/resume',
destination: 'https://docs.google.com/document/d/1NzTWgMwNbMZQWcV3C73mEa8xHUr-D3-CZPg45Ebhfd4/export?format=pdf',
permanent: true,
},
{
source: '/playlist',
destination: 'https://open.spotify.com/playlist/2yigOU680KQPLpe1Eu0C9y?si=7bb9c4332bc44609',
permanent: true,
},
{
source: '/calendar',
destination: 'https://outlook.office.com/bookwithme/user/[email protected]',
permanent: true,
},
{
source: '/certs',
destination: 'https://credly.com/users/ryangniadek',
permanent: true,
},
{
source: '/certifications',
destination: '/certs',
permanent: true,
},
{
source: '/signal',
destination: 'https://signal.me/#eu/k6v2O6CTIjULhZRkfs03PAk3yiVRxlB_Ipgvjw35jLUq22Mt4fRF37gNGxW5opaT',
permanent: true,
},
]
},
}