-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
61 lines (60 loc) · 1.44 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
const isProd = process.env.NODE_ENV === "production";
module.exports = {
i18n: {
locales: ["en"],
defaultLocale: "en",
},
optimizeFonts: false,
webpack: (config) => {
config.resolve.fallback = { fs: false, path: false };
return config;
},
assetPrefix: undefined, //isProd ? "https://cdn.limes.pink" : undefined,
async redirects() {
return [
{
source: "/repo",
destination: "https://github.com/gitlimes/website",
permanent: false,
},
{
source: "/masto",
destination: "https://fedi.limes.pink/@limes",
permanent: false,
},
{
source: "/rickroll",
destination: "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
permanent: false,
},
{
source: "/mastodon",
destination: "https://fedi.limes.pink/@limes",
permanent: false,
},
{
source: "/fedi",
destination: "https://fedi.limes.pink/@limes",
permanent: false,
},
{
source: "/.well-known/webfinger/:path*",
destination: "https://fedi.limes.pink/.well-known/webfinger/:path*",
permanent: true,
},
{
source: "/.well-known/fursona",
destination: "/.well-known/fursona.json",
permanent: true,
},
];
},
async rewrites() {
return [
{
source: "/(e|E)(r|R)(r|R)(o|O)(r|R)(s|S)",
destination: "/errors",
},
];
},
};