File size: 912 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/** @type {import('next').NextConfig} */
module.exports = {
  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",
        port: "",
        pathname: "/my-account/**",
      },
    ],
  },
};