-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.js
More file actions
50 lines (49 loc) · 1.15 KB
/
next.config.js
File metadata and controls
50 lines (49 loc) · 1.15 KB
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
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
redirects: async () => {
return [
{
source: "/notion",
destination:
"https://uni0305.notion.site/Uni0305-5b9edf7665cd4c5c9ccce0d91cbad4e8",
permanent: true,
},
{
source: "/discord",
destination: "https://discord.com/users/271102541444415488",
permanent: true,
},
{
source: "/email",
destination: "mailto:contact@uni0305.me",
permanent: true,
},
{
source: "/youtube",
destination: "https://www.youtube.com/channel/UCqGmAGZDRrE1Dz6VNtf-gvA",
permanent: true,
},
{
source: "/github",
destination: "https://github.com/Uni0305",
permanent: true,
},
{
source: "/twitch",
destination: "https://www.twitch.tv/uni0305",
permanent: true,
},
{
source: "/namemc",
destination: "https://mine.ly/Uni0305.1",
permanent: true,
},
];
},
images: {
unoptimized: true,
},
};
module.exports = nextConfig;