Skip to content

Commit aab4848

Browse files
committed
Redirect support to contact
1 parent a6f81f0 commit aab4848

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

next.config.mjs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ import remarkGfm from 'remark-gfm';
44

55
/** @type {import('next').NextConfig} */
66
const nextConfig = {
7+
async redirects() {
8+
return [
9+
{
10+
source: '/support/:path*',
11+
destination: '/contact',
12+
permanent: true,
13+
},
14+
];
15+
},
716
pageExtensions: ['js', 'jsx', 'ts', 'tsx', 'mdx'],
817
experimental: {
918
outputFileTracingIncludes: {

0 commit comments

Comments
 (0)