-
Notifications
You must be signed in to change notification settings - Fork 1
/
next.config.mjs
59 lines (54 loc) · 1.3 KB
/
next.config.mjs
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
import { generateRedirects } from "./src/scripts/createRedirects.js";
const isDev = process.argv.indexOf("dev") !== -1;
const isBuild = process.argv.indexOf("build") !== -1;
if (!process.env.VELITE_STARTED && (isDev || isBuild)) {
process.env.VELITE_STARTED = "1";
const { build } = await import("velite");
await build({ watch: isDev, clean: !isDev });
}
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
loader: "custom",
loaderFile: "./image-loader.js",
},
redirects: customRedirects,
webpack: (config) => {
config.infrastructureLogging = {
level: "error",
};
return config;
},
};
export default nextConfig;
async function customRedirects() {
const redirects = await generateRedirects();
return [
...redirects,
{
source: "/newsletter/:id*",
destination: "/newsletters/:id*",
permanent: true,
},
{
source: "/pages/:id*",
destination: "/:id*",
permanent: true,
},
{
source: "/feed.xml",
destination: "/rss.xml",
permanent: true,
},
{
source: "/diatoms",
destination: "/posts/diatoms",
permanent: true,
},
{
source: "/posts/my-productivity-systems",
destination: "/posts/my-productivity-system",
permanent: true,
},
];
}