-
Notifications
You must be signed in to change notification settings - Fork 12
/
next.config.js
86 lines (84 loc) · 2.09 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
const withMDX = require("@next/mdx")({
extension: /\.mdx?$/,
options: {
providerImportSource: "@mdx-js/react",
},
});
/** @type {import("next").NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
domains: ["images.ctfassets.net"],
},
async redirects() {
return [
{
source: "/drive",
destination:
"https://drive.google.com/drive/folders/0B8rKwHW6MJ1QeEFVVXc5eGVzUzA?resourcekey=0-K2BJe0U3Om4y6dWje2ngaw&usp=sharing",
permanent: true,
},
{
source: "/trello",
destination: "https://trello.com/b/GZ6uUIqE/schdesign-2023-tavasz",
permanent: false,
},
{
source: "/figma",
destination:
"https://www.figma.com/files/team/796103961140349650/schdesign",
permanent: true,
},
{
source: "/logotar",
destination: "https://logotar.schdesign.hu",
permanent: true,
},
{
source: "/proj",
destination:
"https://drive.google.com/drive/folders/0B8rKwHW6MJ1QVEd5N240dlJSU2s?resourcekey=0-ws1VyicbG7V-9EgQ4Jm1-g&usp=sharing",
permanent: true,
},
{
source: "/919",
destination:
"https://calendar.google.com/calendar/[email protected]&ctz=Europe/Budapest&pli=1",
permanent: true,
},
{
source: "/simonyiarculat",
destination:
"https://drive.google.com/drive/folders/0B5vSboSK4bYaMDd2MVB1U2NhNTA?resourcekey=0-URP8EjUTpjZ6H5kqCzL5pQ&usp=sharing",
permanent: true,
},
{
source: "/roadmap",
destination: "https://roadmap.schdesign.hu",
permanent: true,
},
{
source: "/szmsz",
destination:
"https://drive.google.com/file/d/1Jpa6VdPs5PPQm16w6aOW_00RuA8cxYST/view?usp=sharing",
permanent: true,
},
{
source: "/games",
destination:
"https://drive.google.com/drive/folders/1mW8Aaph4jBHZbf9EcEAsebmYTgP_yrxo?usp=sharing",
permanent: true,
},
{
source: "/konf",
destination:
"https://trello.com/b/mbeiTk9j/xx-simonyi-konferencia-arculat",
permanent: true,
},
];
},
};
module.exports = withMDX({
pageExtensions: ["tsx", "mdx", "ts"],
...nextConfig,
});