-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
40 lines (39 loc) · 1.14 KB
/
next.config.js
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
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
async redirects() {
return [
{
source: '/blog/neovim-typescript',
destination: '/writing/neovim-typescript',
permanent: true,
},
{
source: '/blog/building-effective-remote-work-environments',
destination: '/writing/building-effective-remote-work-environments',
permanent: true,
},
{
source: '/blog/echoing-statsd-metrics-locally',
destination: '/writing/echoing-statsd-metrics-locally',
permanent: true,
},
{
source: '/blog/display-current-k8s-context-in-shell',
destination: '/writing/display-current-k8s-context-in-shell',
permanent: true,
},
{
source: '/blog/managing-postgres-schema-changes-with-migra',
destination: '/writing/managing-postgres-schema-changes-with-migra',
permanent: true,
},
{
source: '/blog/php-a-prettier-way-to-vardump',
destination: '/writing/php-a-prettier-way-to-vardump',
permanent: true,
},
]
},
}
module.exports = nextConfig