-
Notifications
You must be signed in to change notification settings - Fork 8
/
vercel.json
50 lines (50 loc) · 1.43 KB
/
vercel.json
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
{
"trailingSlash": true,
"redirects": [
{
"source": "/tutorials/go/ecommerce/",
"destination": "/tutorials/go/build-an-ecommerce-app/",
"permanent": true
},
{
"source": "/tutorials/go/subscriptions/",
"destination": "/tutorials/go/build-an-email-drip-campaign/",
"permanent": true
},
{
"source": "/tutorials/php/booking_saga/",
"destination": "/tutorials/php/build_a_trip_booking_app/",
"permanent": true
},
{
"source": "/tutorials/php/subscriptions/",
"destination": "/tutorials/php/build-a-recurring-billing-app/",
"permanent": true
},
{
"source": "/tutorials/python/subscriptions/",
"destination": "/tutorials/python/build-an-email-drip-campaign/",
"permanent": true
},
{
"source": "/tutorials/python/data-pipelines/",
"destination": "/tutorials/python/build-a-data-pipeline/",
"permanent": true
},
{
"source": "/tutorials/typescript/nextjs/",
"destination": "/tutorials/typescript/build-one-click-order-app-nextjs/",
"permanent": true
},
{
"source": "/tutorials/typescript/subscriptions/",
"destination": "/tutorials/typescript/recurring-billing-system/",
"permanent": true
},
{
"source": "/tutorials/typescript/chatbot/",
"destination": "/tutorials/typescript/build-choose-your-own-adventure-bot/",
"permanent": true
}
]
}