-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
34 lines (33 loc) · 882 Bytes
/
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
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
images: {
domains: ['media.graphassets.com', 'haoyudoing-cv.s3.amazonaws.com', 'haoyudoing-cv.s3.us-west-2.amazonaws.com', 'media.graphcms.com']
},
async redirects() {
return [
{
source: '/linkedin',
destination: 'https://www.linkedin.com/in/haoyudoing/',
permanent: true,
},
{
source: '/haocao',
destination: 'https://open.spotify.com/playlist/4dpEKRN6zyyJxi925mWoRB?si=9054fa58272841d6',
permanent: true,
},
{
source: '/tapia',
destination: '/',
permanent: true,
},
{
source: '/resume',
destination: 'https://media.graphassets.com/VqGs071IQJugX9MO8n0T',
permanent: true,
},
]
},
}
module.exports = nextConfig