This repository was archived by the owner on Jan 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnext.config.js
More file actions
86 lines (80 loc) · 1.97 KB
/
next.config.js
File metadata and controls
86 lines (80 loc) · 1.97 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
import path from 'path';
import fs from 'fs';
import createMDX from '@next/mdx';
const blogs = fs.readdirSync(path.join('.', 'src', 'content', 'blog'));
const redirects = () => {
const blogRedirects = blogs.map((b) => {
const uri = path.basename(b).replace('.mdx', '');
return {
source: `/${uri}`,
destination: `/blog/${uri}`,
permanent: true,
};
});
return [
...blogRedirects,
{
source: '/about/organization',
destination: 'https://docs.buddiesofbudgie.org/organization/intro',
permanent: true,
},
{
source: '/rss',
destination: '/feeds/news.xml',
permanent: true,
},
];
};
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
largePageDataBytes: 512 * 1000,
//outputFileTracingRoot: path.join(__dirname, "../../"),
},
generateBuildId: async () => {
if (process.env.BUILD_ID) {
return process.env.BUILD_ID;
} else {
return `${new Date().getTime()}`;
}
},
headers: async () => [
{
source: '/about/roadmap',
headers: [
{
key: 'Cache-Control',
value: 's-maxage=3600, stale-while-revalidate=59',
},
],
},
],
images: {
contentDispositionType: 'attachment',
contentSecurityPolicy: "default-src 'self'; script-src 'none'; sandbox;",
dangerouslyAllowSVG: true,
formats: ['image/avif', 'image/webp'],
remotePatterns: [
{
protocol: 'https',
hostname: 'avatars.githubusercontent.com',
},
],
},
output: 'standalone',
pageExtensions: ['ts', 'tsx', 'js', 'jsx', 'md', 'mdx'], // Append the default value with md extensions
reactStrictMode: true,
redirects: async () => redirects(),
typescript: {
ignoreBuildErrors: true,
},
};
const withMDX = createMDX({
extension: /\.mdx?$/,
options: {
remarkPlugins: [],
rehypePlugins: [],
providerImportSource: '@mdx-js/react',
},
});
export default withMDX(nextConfig);