We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7566ed commit a7c46c4Copy full SHA for a7c46c4
1 file changed
frontend/main/next.config.js
@@ -9,4 +9,23 @@ module.exports = withBundleAnalyzer({
9
loader: 'cloudinary',
10
path: 'https://media.codingcat.dev/image/upload/',
11
},
12
+ async redirects() {
13
+ return [
14
+ {
15
+ source: '/blog/design-systems-with-web-components',
16
+ destination: '/tutorial/design-systems-with-web-components',
17
+ permanent: true,
18
+ },
19
20
+ source: '/lessons/:path*',
21
+ destination: '/tutorial/:path*',
22
23
24
25
+ source: '/blog/:path*',
26
+ destination: '/post/:path*',
27
28
29
+ ];
30
31
});
0 commit comments