-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
65 lines (61 loc) · 1.46 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
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
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
images: {
dangerouslyAllowSVG:true,
domains: [
"lh3.googleusercontent.com",
"vercel.com",
"placehold.co",
"images.unsplash.com",
"res.cloudinary.com",
"picsum.photos",
"api.dicebear.com",
"avatars.githubusercontent.com"],
},
async redirects() {
return [
{
source: "/github",
destination: "https://github.com/TechWithTy/DataDrivenCyberOni",
permanent: true,
},
{
source: "/support",
destination: "https://form.jotform.com/233444925421050",
permanent: true,
},
{
source: "/schedule",
destination: "https://calendly.com/cyberoni/quick-zoom-meeting",
permanent: true,
},
{
source: "/apply/full-stack",
destination: "https://form.jotform.com/233470488980164",
permanent: true,
},
{
source: "/hire-a-dev",
destination: "https://form.jotform.com/233471176876163",
permanent: true,
},
{
source: "/reviews",
destination: "https://g.page/r/CfS7tYPMVQ8ZEAI/review",
permanent: true,
},
{
source: "/google-business",
destination: "https://maps.app.goo.gl/44BHLXSPYw6mNotMA",
permanent: true,
},
];
},
experimental: {
serverActions: {
},
}
};
module.exports = nextConfig;