-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathnext.config.js
More file actions
41 lines (39 loc) · 828 Bytes
/
next.config.js
File metadata and controls
41 lines (39 loc) · 828 Bytes
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
module.exports = {
trailingSlash: true,
reactStrictMode: true,
async rewrites() {
return [
{
source: "/",
destination: "/landing-page/landing-page-with-components",
}
];
},
redirects() {
const sourcesRequiringAuthToken = [
"/", "/landing-page/:slug*", "/blog/:path*"
]
return process.env.NEXT_PUBLIC_BUTTER_CMS_API_KEY ? [
{
source: "/missing-token",
destination: "/",
permanent: false
}
] : sourcesRequiringAuthToken.map(source => ({
source: source,
destination: "/missing-token",
permanent: false
})
)
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'cdn.buttercms.com',
pathname: '**',
},
],
dangerouslyAllowSVG: true,
},
};