-
-
Notifications
You must be signed in to change notification settings - Fork 709
Expand file tree
/
Copy pathvercel.json
More file actions
55 lines (55 loc) · 2.51 KB
/
vercel.json
File metadata and controls
55 lines (55 loc) · 2.51 KB
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
45
46
47
48
49
50
51
52
53
54
55
{
"trailingSlash": true,
"redirects": [
{ "source": "/survey/", "destination": "https://forms.gle/v8mjUuf5cyRZy2GG7", "statusCode": 301 },
{ "source": "/survey/2025/", "destination": "https://forms.gle/v8mjUuf5cyRZy2GG7", "statusCode": 301 },
{ "source": "/mastodon/", "destination": "https://neighborhood.11ty.dev/@11ty", "statusCode": 301 },
{ "source": "/youtube/", "destination": "https://www.youtube.com/c/EleventyVideo", "statusCode": 301 },
{ "source": "/follow/", "destination": "/firehose/firehose.rss", "statusCode": 301 },
{ "source": "/follow/follow.rss", "destination": "/firehose/firehose.rss", "statusCode": 301 },
{ "source": "/docs/getting-started/", "destination": "/docs/", "statusCode": 301 },
{ "source": "/docs/get-started/", "destination": "/docs/", "statusCode": 301 },
{ "source": "/activity/", "destination": "/firehose/", "statusCode": 301 },
{ "source": "/docs/sites/", "destination": "/speedlify/", "statusCode": 301 },
{ "source": "/docs/performance-leaderboard/", "destination": "/speedlify/", "statusCode": 301 },
{ "source": "/docs/accessibility-leaderboard/", "destination": "/speedlify/", "statusCode": 301 },
{ "source": "/leaderboard/(.*)", "destination": "/speedlify/", "statusCode": 301 },
{ "source": "/news/:path*", "destination": "/blog/:path*", "statusCode": 301 },
{ "source": "/docs/how-to-support/", "destination": "/docs/community/", "statusCode": 301 },
{ "source": "/docs/plugins/cache/", "destination": "/docs/plugins/fetch/", "statusCode": 301 },
{ "source": "/docs/plugins/partial-hydration/", "destination": "/docs/plugins/is-land/", "statusCode": 301 },
{ "source": "/docs/templates/", "destination": "/docs/projects/", "statusCode": 301 },
{ "source": "/docs/plugins/official/", "destination": "/docs/plugins/", "statusCode": 301 },
{ "source": "/docs/memoize/", "destination": "/docs/filters/#memoize-filters", "statusCode": 301 }
],
"rewrites": [
{
"source": "/speedlify/(.*)",
"destination": "https://built-with-11ty-speedlify.vercel.app/speedlify/$1"
}
],
"headers": [
{
"source": "/api/(.*)",
"headers": [
{
"key": "Access-Control-Allow-Origin",
"value": "*"
}
]
},
{
"source": "/blog/feed.xml",
"headers": [
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "Content-Type",
"value": "application/xml; charset=utf-8"
}
]
}
]
}