-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnext.config.mjs
97 lines (90 loc) · 2.59 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
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
// @ts-check
import { setupDevPlatform } from '@cloudflare/next-on-pages/next-dev';
// Here we use the @cloudflare/next-on-pages next-dev module to allow us to use bindings during local development
// (when running the application with `next dev`), for more information see:
// https://github.com/cloudflare/next-on-pages/blob/main/internal-packages/next-dev/README.md
if (process.env.NODE_ENV === 'development') {
await setupDevPlatform();
}
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import { env } from './src/env/server.mjs';
import withBundleAnalyzer from '@next/bundle-analyzer';
const isProductionBuild = process.env.NODE_ENV === 'production';
const shouldOpenAnalyzer = process.env.OPEN_ANALYZER === 'true';
/**
* Don't be scared of the generics here.
* All they do is to give us autocompletion when using this.
*
* @template {import('next').NextConfig} T
* @param {T} config - A generic parameter that flows through to the return type
* @constraint {{import('next').NextConfig}}
*/
function defineNextConfig(config) {
return config;
}
const nextConfig = defineNextConfig({
i18n: {
locales: ['en'],
defaultLocale: 'en'
},
reactStrictMode: true,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'cdn.hashnode.com'
}
]
},
redirects: async () => {
return [
{
source: '/ama',
destination: 'https://github.com/raisedadead/ama/discussions/14',
basePath: false,
permanent: false
},
{
source: '/contact',
destination: '/about',
permanent: false
},
{
source: '/dotfiles',
destination: 'https://github.com/raisedadead/dotfiles',
permanent: false
},
{
source: '/links',
destination: 'https://bio.link/mrugesh',
basePath: false,
permanent: false
},
{
source: '/meet',
destination: 'https://topmate.io/mrugesh',
basePath: false,
permanent: false
},
{
source: '/meet/personal',
destination:
'https://cal.com/mrugesh/meet?duration=30&layout=month_view',
basePath: false,
permanent: false
},
{
source: '/meet/freecodecamp',
destination: 'https://calendar.app.google/AfQByQkijweg98736',
basePath: false,
permanent: false
}
];
}
});
const configAnalyzer = withBundleAnalyzer({
enabled: isProductionBuild,
openAnalyzer: shouldOpenAnalyzer
})(nextConfig);
const config = isProductionBuild ? configAnalyzer : nextConfig;
export default config;