3
3
exports [` Routing creates Netlify redirects 1` ] = `
4
4
"# Next-on-Netlify Redirects
5
5
/ /.netlify/functions/next_index 200
6
- /404 /en/404.html 200
6
+ /404 /.netlify/functions/next_404 200! Cookie=__prerender_bypass,__next_preview_data
7
+ /404 /en/404 200
7
8
/500 /en/500.html 200
8
9
/_next/data/%BUILD_ID%/en.json /.netlify/functions/next_index 200
10
+ /_next/data/%BUILD_ID%/en/404.json /.netlify/functions/next_404 200! Cookie=__prerender_bypass,__next_preview_data
9
11
/_next/data/%BUILD_ID%/en/getServerSideProps/static.json /.netlify/functions/next_getServerSideProps_static 200
10
12
/_next/data/%BUILD_ID%/en/getStaticProps/1.json /.netlify/functions/next_getStaticProps_id 200! Cookie=__prerender_bypass,__next_preview_data
11
13
/_next/data/%BUILD_ID%/en/getStaticProps/2.json /.netlify/functions/next_getStaticProps_id 200! Cookie=__prerender_bypass,__next_preview_data
@@ -22,13 +24,15 @@ exports[`Routing creates Netlify redirects 1`] = `
22
24
/_next/data/%BUILD_ID%/en/getStaticProps/withRevalidate/withFallback/1.json /.netlify/functions/preview-next_getStaticProps_withRevalidate_withFallback_id 200! Cookie=__prerender_bypass,__next_preview_data
23
25
/_next/data/%BUILD_ID%/en/getStaticProps/withRevalidate/withFallback/2.json /.netlify/functions/preview-next_getStaticProps_withRevalidate_withFallback_id 200! Cookie=__prerender_bypass,__next_preview_data
24
26
/_next/data/%BUILD_ID%/es.json /.netlify/functions/next_index 200
27
+ /_next/data/%BUILD_ID%/es/404.json /.netlify/functions/next_404 200! Cookie=__prerender_bypass,__next_preview_data
25
28
/_next/data/%BUILD_ID%/es/getServerSideProps/static.json /.netlify/functions/next_getServerSideProps_static 200
26
29
/_next/data/%BUILD_ID%/es/getStaticProps/static.json /.netlify/functions/next_getStaticProps_static 200! Cookie=__prerender_bypass,__next_preview_data
27
30
/_next/data/%BUILD_ID%/es/getStaticProps/with-revalidate.json /.netlify/functions/next_getStaticProps_withrevalidate 200
28
31
/_next/data/%BUILD_ID%/getServerSideProps/static.json /.netlify/functions/next_getServerSideProps_static 200
29
32
/api/hello-background /.netlify/functions/next_api_hello-background 200
30
33
/api/static /.netlify/functions/next_api_static 200
31
34
/en /.netlify/functions/next_index 200
35
+ /en/404 /.netlify/functions/next_404 200! Cookie=__prerender_bypass,__next_preview_data
32
36
/en/getServerSideProps/static /.netlify/functions/next_getServerSideProps_static 200
33
37
/en/getStaticProps/1 /.netlify/functions/next_getStaticProps_id 200! Cookie=__prerender_bypass,__next_preview_data
34
38
/en/getStaticProps/2 /.netlify/functions/next_getStaticProps_id 200! Cookie=__prerender_bypass,__next_preview_data
@@ -45,6 +49,7 @@ exports[`Routing creates Netlify redirects 1`] = `
45
49
/en/getStaticProps/withRevalidate/withFallback/1 /.netlify/functions/preview-next_getStaticProps_withRevalidate_withFallback_id 200! Cookie=__prerender_bypass,__next_preview_data
46
50
/en/getStaticProps/withRevalidate/withFallback/2 /.netlify/functions/preview-next_getStaticProps_withRevalidate_withFallback_id 200! Cookie=__prerender_bypass,__next_preview_data
47
51
/es /.netlify/functions/next_index 200
52
+ /es/404 /.netlify/functions/next_404 200! Cookie=__prerender_bypass,__next_preview_data
48
53
/es/getServerSideProps/static /.netlify/functions/next_getServerSideProps_static 200
49
54
/es/getStaticProps/static /.netlify/functions/next_getStaticProps_static 200! Cookie=__prerender_bypass,__next_preview_data
50
55
/es/getStaticProps/with-revalidate /.netlify/functions/next_getStaticProps_withrevalidate 200
0 commit comments