-
Notifications
You must be signed in to change notification settings - Fork 6
/
next.config.mjs
39 lines (36 loc) · 998 Bytes
/
next.config.mjs
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
import withNextra from "nextra";
const withNextraConfig = withNextra({
theme: "nextra-theme-docs",
themeConfig: "./theme.config.tsx",
});
export default withNextraConfig({
redirects: async () => {
return [
{
source: '/texting-before/:path*',
destination: '/situational-before/:path*',
permanent: true,
},
{
source: '/texting-during/:path*',
destination: '/situational-during/:path*',
permanent: true,
},
{
source: '/what-to-do-before/:path*',
destination: '/tutorial-before/:path*',
permanent: true,
},
];
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'res.cloudinary.com',
port: '',
pathname: "/dxn1ulklt/**"
},
],
},
});