Skip to content

Commit 351fcef

Browse files
committed
Merge branch 'dev'
2 parents c27f96f + 0868081 commit 351fcef

24 files changed

+9925
-1756
lines changed

content/docs/content-creation/fields.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Fields
33
slug: content-creation/fields
44
description: null
55
date: 2022-03-14T08:42:21.626Z
6-
lastmod: 2023-10-06T12:02:44.400Z
6+
lastmod: 2023-11-12T12:58:00.539Z
77
weight: 200.2
88
---
99

content/docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Getting started
33
slug: getting-started
44
description: null
55
date: 2021-08-30T16:13:00.546Z
6-
lastmod: 2023-11-02T15:02:12.533Z
6+
lastmod: 2023-11-12T12:57:55.076Z
77
weight: 100
88
---
99

next.config.js

Lines changed: 30 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,37 @@ module.exports = {
55
MENDABLE_ANON_KEY: process.env.MENDABLE_ANON_KEY,
66
MENDABLE_ANON_URL: process.env.MENDABLE_ANON_URL,
77
},
8+
typescript: {
9+
ignoreBuildErrors: false,
10+
},
811
async redirects() {
9-
return [{
10-
source: '/docs/content-types',
11-
destination: '/docs/content-creation',
12-
permanent: true
13-
}, ]
12+
return [
13+
{
14+
source: "/docs/content-types",
15+
destination: "/docs/content-creation",
16+
permanent: true,
17+
},
18+
];
1419
},
1520
async headers() {
16-
return [{
17-
source: "/:path*",
18-
headers: [{
19-
key: "Access-Control-Allow-Origin",
20-
value: "*"
21-
}, {
22-
key: "Access-Control-Allow-Methods",
23-
value: "GET,OPTIONS,POST"
24-
}, {
25-
key: "Access-Control-Allow-Headers",
26-
value: "*"
27-
}],
28-
}, ]
21+
return [
22+
{
23+
source: "/:path*",
24+
headers: [
25+
{
26+
key: "Access-Control-Allow-Origin",
27+
value: "*",
28+
},
29+
{
30+
key: "Access-Control-Allow-Methods",
31+
value: "GET,OPTIONS,POST",
32+
},
33+
{
34+
key: "Access-Control-Allow-Headers",
35+
value: "*",
36+
},
37+
],
38+
},
39+
];
2940
},
30-
}
41+
};

0 commit comments

Comments
 (0)