We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad22bce commit 9784088Copy full SHA for 9784088
next.config.ts
@@ -4,6 +4,35 @@ const nextConfig: NextConfig = {
4
images: {
5
qualities: [75, 90],
6
},
7
+ async redirects() {
8
+ return [
9
+ {
10
+ source: '/about.html',
11
+ destination: '/about',
12
+ permanent: true,
13
+ },
14
15
+ source: '/contact.html',
16
+ destination: '/contact',
17
18
19
20
+ source: '/gallery.html',
21
+ destination: '/',
22
23
24
25
+ source: '/faq.html',
26
+ destination: '/#why-us',
27
28
29
30
+ source: '/service-details.html',
31
+ destination: '/services',
32
33
34
+ ];
35
36
};
37
38
export default nextConfig;
0 commit comments