-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnext.config.js
More file actions
125 lines (125 loc) · 3.08 KB
/
next.config.js
File metadata and controls
125 lines (125 loc) · 3.08 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
module.exports = {
reactStrictMode: true,
transpilePackages: ["next-mdx-remote"],
images: {
remotePatterns: [
{
protocol: "https",
hostname: "media.graphassets.com",
},
{
protocol: "https",
hostname: "pbs.twimg.com",
},
{
protocol: "https",
hostname: "img.shields.io",
},
{
protocol: "https",
hostname: "media.graphcms.com",
},
{
protocol: "https",
hostname: "docs.runme.dev",
},
{
protocol: "https",
hostname: "twimg.com",
},
{
protocol: "https",
hostname: "media.licdn.com",
},
],
},
async redirects() {
return [
{
source: "/blog/dagger-for-runme",
destination: "https://runme.dev/blog/runme-for-dagger",
permanent: true,
},
{
source: "/newsletter",
destination: "/list",
permanent: true,
},
{
source: "/docs/cli",
destination: "https://docs.runme.dev/installation/cli",
permanent: true,
},
{
source: "/docs",
destination: "https://docs.runme.dev",
permanent: true,
},
{
source: "/docs/intro",
destination: "https://docs.runme.dev",
permanent: true,
},
{
source: "/docs/:path*",
destination: "https://docs.runme.dev/:path*",
permanent: true,
},
{
source: "/redirect/notifyV2",
destination:
"https://runme.dev/blog/escape-confluence-runme-v2?utm_source=stateful.runme&utm_medium=vscode&utm_content=notification#notes",
permanent: true,
},
{
source: "/redirect/shebang-auto-detect",
destination:
"https://docs.runme.dev/usage/shebang?utm_source=stateful.runme&utm_medium=vscode#list-of-auto-detected-language-runtimes",
permanent: true,
},
{
source: "/spotlight/shebang-support",
destination: "https://docs.runme.dev/usage/shebang",
permanent: true,
},
{
source: "/topics/devops",
destination: "/",
permanent: true,
},
{
source: "/jobs/product-manager",
destination: "/jobs",
permanent: false,
},
{
source: "/jobs/apply/product-manager",
destination: "/jobs",
permanent: false,
},
{
source: "/docs/configuration#supported-mime-types",
destination: "/docs/configuration/reference#supported-mime-types",
permanent: true,
},
{
source: "/docs/configuration#run-all-cells-by-category",
destination: "/docs/configuration/cell-level#run-all-cells-by-category",
permanent: true,
},
{
source: "/blog/cloud-consoles-in-your-docs",
destination: "/blog/cloud-consoles-inside-your-docs",
permanent: true,
},
{
source: "/enterprise",
destination: "/cloud",
permanent: true,
},
];
},
experimental: {
largePageDataBytes: 400 * 100000,
},
};