-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
63 lines (60 loc) · 1.47 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
/* eslint-disable @typescript-eslint/no-var-requires */
const withImages = require("next-images");
/**
* @type {import("next").NextConfig}
*/
module.exports = () => {
const plugins = [withImages];
return plugins.reduce((acc, next) => next(acc), {
reactStrictMode: true,
poweredByHeader: false,
trailingSlash: false,
swcMinify: true,
i18n: {
locales: ["en", "tr"],
defaultLocale: "tr",
},
images: {
domains: [],
},
async redirects() {
return [
{
source: "/github",
destination: "https://github.com/SlipBey",
permanent: true,
},
{
source: "/instagram",
destination: "https://www.instagram.com/SlipBey",
permanent: true,
},
{
source: "/youtube",
destination: "https://www.youtube.com/@SlipBeyYoutube/",
permanent: true,
},
{
source: "/discord",
destination: "https://discord.gg/ttGpRCZZp6",
permanent: true,
},
{
source: "/linkedin",
destination: "https://www.linkedin.com/in/slipbey/",
permanent: true,
},
{
source: "/npm",
destination: "https://www.npmjs.com/~mynameisslik",
permanent: true,
},
{
source: "/spotify",
destination: "spotify:user/g8l0pnh50bxsyb932y052ma4h",
permanent: true,
},
];
},
});
};