-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.ts
More file actions
92 lines (89 loc) · 1.99 KB
/
next.config.ts
File metadata and controls
92 lines (89 loc) · 1.99 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
/** biome-ignore-all lint/suspicious/useAwait: it's a redirect and is written acc to nextjs docs */
import { withContentCollections } from '@content-collections/next';
import type { NextConfig } from 'next';
const redirectsConfig = async () => {
return [
{
source: '/resume',
destination: 'https://resume.milind.app',
permanent: true,
},
{
source: '/json',
destination: 'https://json.milind.app',
permanent: true,
},
{
source: '/canvas',
destination: 'https://canvas.milind.app',
permanent: true,
},
{
source: '/notes',
destination: 'https://notes.milind.app',
permanent: true,
},
{
source: '/linkedin',
destination: 'https://linkedin.com/in/mishramilind',
permanent: true,
},
{
source: '/github',
destination: 'https://github.com/thatbeautifuldream',
permanent: true,
},
{
source: '/x',
destination: 'https://x.com/milindmishra_',
permanent: true,
},
{
source: '/instagram',
destination: 'https://instagram.com/thatbeautifuldream',
permanent: true,
},
{
source: '/slides',
destination: '/slide',
permanent: true,
},
{
source: '/blogs',
destination: '/blog',
permanent: true,
},
{
source: '/gists',
destination: '/gist',
permanent: true,
},
];
};
const nextConfig: NextConfig = {
experimental: {
viewTransition: true,
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'cdn.milind.app',
},
],
},
webpack: (config) => {
if (process.env.ANALYZE === 'true') {
const { BundleAnalyzerPlugin } = require('@next/bundle-analyzer')({
analyzerMode: 'static',
openAnalyzer: false,
});
config.plugins.push(BundleAnalyzerPlugin);
}
return config;
},
};
export default withContentCollections({
...nextConfig,
redirects: redirectsConfig,
});